Package org.springframework.mail
Class MailException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.mail.MailException
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 MailAuthenticationException,MailParseException,MailPreparationException,MailSendException
Base class for all mail exceptions.
- Author:
 - Dmitriy Kopylenko
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionMailException(String msg) Constructor for MailException.MailException(String msg, Throwable cause) Constructor for MailException. - 
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
MailException
Constructor for MailException.- Parameters:
 msg- the detail message
 - 
MailException
Constructor for MailException.- Parameters:
 msg- the detail messagecause- the root cause from the mail API in use
 
 -