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:
java.io.Serializable
public class EmailServiceException extends java.lang.Exception
This exception is thrown by email providers in case of error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmailServiceException()
Default constructorEmailServiceException(java.lang.String message)
Constructor that takes error message as argumentEmailServiceException(java.lang.String message, java.lang.Throwable throwable)
Constructor that takes error message and Throwable root cause as argument.EmailServiceException(java.lang.Throwable throwable)
Constructor that takes the Throwable root cause as argument.
-
-
-
Constructor Detail
-
EmailServiceException
public EmailServiceException()
Default constructor
-
EmailServiceException
public EmailServiceException(java.lang.String message)
Constructor that takes error message as argument- Parameters:
message
- The error message
-
EmailServiceException
public EmailServiceException(java.lang.Throwable throwable)
Constructor that takes the Throwable root cause as argument.- Parameters:
throwable
- The root cause Throwable instance.
-
EmailServiceException
public EmailServiceException(java.lang.String message, java.lang.Throwable throwable)
Constructor that takes error message and Throwable root cause as argument.- Parameters:
message
- The error messagethrowable
- The root cause Throwable instance.
-
-