Example #1
0
 public DBTransactionException(EErrorKind eKind, string transactionName, DBExecuteException innerDBException)
     : base(transactionName, innerDBException.ErrorMessage)
 {
     this.eKind = eKind;
     this.innerDBExecuteException = innerDBException;
 }
Example #2
0
 public DBExecuteException(DBExecuteException other)
     : base(other.SQLCommand, other.ErrorMessage)
 {
     this.eKind = other.eKind;
 }