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