Ejemplo n.º 1
0
 public TransactionException(string message, TransactionStaus thrownStatus)
     : base(message)
 {
     ThrownStatus = thrownStatus;
 }
Ejemplo n.º 2
0
 public TransactionException(string message, Exception innerException, TransactionStaus thrownStatus)
     : base(message, innerException)
 {
     ThrownStatus = thrownStatus;
 }
Ejemplo n.º 3
0
 public TransactionException(TransactionStaus thrownStatus)
 {
     ThrownStatus = thrownStatus;
 }