Beispiel #1
0
 public EmailingException(EmailerTypes type)
     : this("Failed to send an email", type)
 {
 }
Beispiel #2
0
 public EmailingException(string msg, EmailerTypes type)
     : base(msg)
 {
     EmailerType = type;
 }