Ejemplo n.º 1
0
 public SmsException(SmsExceptionType smsExceptionType)
 {
     this.SmsExceptionType = smsExceptionType;
     this.InnerException = null;
 }
Ejemplo n.º 2
0
 public SmsException(SmsExceptionType smsExceptionType, System.Exception expception)
 {
     this.SmsExceptionType = smsExceptionType;
     this.InnerException = expception;
 }