Class EmailServiceException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.day.cq.mcm.emailprovider.EmailServiceException
All Implemented Interfaces:
Serializable

public class EmailServiceException extends Exception
This exception is thrown by email providers in case of error.
See Also:
  • Constructor Details

    • EmailServiceException

      public EmailServiceException()
      Default constructor
    • EmailServiceException

      public EmailServiceException(String message)
      Constructor that takes error message as argument
      Parameters:
      message - The error message
    • EmailServiceException

      public EmailServiceException(Throwable throwable)
      Constructor that takes the Throwable root cause as argument.
      Parameters:
      throwable - The root cause Throwable instance.
    • EmailServiceException

      public EmailServiceException(String message, Throwable throwable)
      Constructor that takes error message and Throwable root cause as argument.
      Parameters:
      message - The error message
      throwable - The root cause Throwable instance.