예제 #1
0
 public TransactionException(string message, TransactionStaus thrownStatus)
     : base(message)
 {
     ThrownStatus = thrownStatus;
 }
예제 #2
0
 public TransactionException(string message, Exception innerException, TransactionStaus thrownStatus)
     : base(message, innerException)
 {
     ThrownStatus = thrownStatus;
 }
예제 #3
0
 public TransactionException(TransactionStaus thrownStatus)
 {
     ThrownStatus = thrownStatus;
 }