Exemplo n.º 1
0
 public DBConnectionException(EErrorKind eKind, string connectionString, string errorMessage)
     : base(connectionString, errorMessage)
 {
     this.eKind = eKind;
 }
Exemplo n.º 2
0
 public DBExecuteException(DBExecuteException other)
     : base(other.SQLCommand, other.ErrorMessage)
 {
     this.eKind = other.eKind;
 }
Exemplo n.º 3
0
 public DBTransactionException(EErrorKind eKind, string transactionName, DBExecuteException innerDBException)
     : base(transactionName, innerDBException.ErrorMessage)
 {
     this.eKind = eKind;
     this.innerDBExecuteException = innerDBException;
 }
Exemplo n.º 4
0
 public DBExecuteException(EErrorKind eKind, string sqlCommand, string errorMessage)
     : base(sqlCommand, errorMessage)
 {
     this.eKind = eKind;
 }