Exemplo n.º 1
0
 public void TestEmailExceptionWithMessage()
 {
     EmailGatewayException e = new EmailGatewayException("Failed to do something.");
 }
Exemplo n.º 2
0
 public void TestEmailExceptionWithMessageAndException()
 {
     EmailGatewayException e = new EmailGatewayException("Failed to do something else.", new ArgumentException());
 }
Exemplo n.º 3
0
 public void TestEmailException()
 {
     EmailGatewayException e = new EmailGatewayException();
 }