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