1 package info.magnolia.cms.mail; 2 3 7 public class MailException extends Exception { 8 9 12 private static final long serialVersionUID = 1L; 13 14 public MailException(Throwable throwable) { 15 super(throwable); 16 } 17 18 public MailException(String string) { 19 super(string); 20 } 21 22 public MailException(String string, Throwable throwable) { 23 super(string, throwable); 24 } 25 } 26 | Popular Tags |