Package alpine.server.mail
Class SendMailException
java.lang.Object
java.lang.Throwable
java.lang.Exception
alpine.server.mail.SendMailException
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new SendMailException withnullas its detail message.SendMailException(String message) Constructs a new SendMailException with the specified detail message.SendMailException(String message, Throwable cause) Constructs a new SendMailException with the specified detail message and cause.SendMailException(Throwable cause) Constructs a new SendMailException with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SendMailException
public SendMailException()Constructs a new SendMailException withnullas its detail message.- Since:
- 1.3.0
-
SendMailException
Constructs a new SendMailException with the specified detail message.- Parameters:
message- the detail message- Since:
- 1.3.0
-
SendMailException
Constructs a new SendMailException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception- Since:
- 1.3.0
-
SendMailException
Constructs a new SendMailException with the specified cause.- Parameters:
cause- the cause of the exception- Since:
- 1.3.0
-