Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Exomia.Database.Exceptions

Daniel Baetz edited this page Jun 21, 2019 · 5 revisions

DbConnectionException

Exception for signalling database connection errors.

public class Exomia.Database.Exceptions.DbConnectionException
    : DbException, ISerializable, _Exception

Constructors

.ctor DbConnectionException()

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.DbConnectionException class.


.ctor DbConnectionException(String message)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.DbConnectionException class.

Parameter:

  • message - The message.

.ctor DbConnectionException(String message, Int32 errorCode)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.DbConnectionException class.

Parameter:

  • message - The message.
  • errorCode - The error code.

.ctor DbConnectionException(String message, Exception innerException)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.DbConnectionException class.

Parameter:

  • message - The message.
  • innerException - The inner exception.


NullDbConnectionException

Exception for signalling null database connection errors.

public class Exomia.Database.Exceptions.NullDbConnectionException
    : DbException, ISerializable, _Exception

Constructors

.ctor NullDbConnectionException()

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionException class.


.ctor NullDbConnectionException(String message)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionException class.

Parameter:

  • message - The message.

.ctor NullDbConnectionException(String message, Int32 errorCode)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionException class.

Parameter:

  • message - The message.
  • errorCode - The error code.

.ctor NullDbConnectionException(String message, Exception innerException)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionException class.

Parameter:

  • message - The message.
  • innerException - The inner exception.


NullDbConnectionStringException

Exception for signalling null database connection string errors.

public class Exomia.Database.Exceptions.NullDbConnectionStringException
    : DbException, ISerializable, _Exception

Constructors

.ctor NullDbConnectionStringException()

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionStringException class.


.ctor NullDbConnectionStringException(String message)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionStringException class.

Parameter:

  • message - The message.

.ctor NullDbConnectionStringException(String message, Int32 errorCode)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionStringException class.

Parameter:

  • message - The message.
  • errorCode - The error code.

.ctor NullDbConnectionStringException(String message, Exception innerException)

Summary:

Initializes a new instance of the Exomia.Database.Exceptions.NullDbConnectionStringException class.

Parameter:

  • message - The message.
  • innerException - The inner exception.