* Constructor for MailException. * @param msg the detail message * @param cause the root cause from the mail API in use */ public MailException(String msg, Throwable cause) { super(msg, cause); } }
29: super(msg); Full Snippet Info
31: super(msg, cause); Full Snippet Info
42: super(message, cause); Full Snippet Info