Package com.day.cq.mcm.emailprovider
Class EmailServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.day.cq.mcm.emailprovider.EmailServiceException
- All Implemented Interfaces:
Serializable
This exception is thrown by email providers in case of error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorEmailServiceException(String message) Constructor that takes error message as argumentEmailServiceException(String message, Throwable throwable) Constructor that takes error message and Throwable root cause as argument.EmailServiceException(Throwable throwable) Constructor that takes the Throwable root cause as argument. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EmailServiceException
public EmailServiceException()Default constructor -
EmailServiceException
Constructor that takes error message as argument- Parameters:
message- The error message
-
EmailServiceException
Constructor that takes the Throwable root cause as argument.- Parameters:
throwable- The root cause Throwable instance.
-
EmailServiceException
Constructor that takes error message and Throwable root cause as argument.- Parameters:
message- The error messagethrowable- The root cause Throwable instance.
-