1 16 17 package org.springframework.mail; 18 19 25 public class MailAuthenticationException extends MailException { 26 27 31 public MailAuthenticationException(String msg) { 32 super(msg); 33 } 34 35 40 public MailAuthenticationException(String msg, Throwable cause) { 41 super(msg, cause); 42 } 43 44 48 public MailAuthenticationException(Throwable cause) { 49 super("Authentication failed", cause); 50 } 51 52 } 53 | Popular Tags |