Package alpine.mail
Class SendMailException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- alpine.mail.SendMailException
-
- All Implemented Interfaces:
Serializable
public class SendMailException extends Exception
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SendMailException()Constructs 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 Detail
-
SendMailException
public SendMailException()
Constructs a new SendMailException withnullas its detail message.- Since:
- 1.3.0
-
SendMailException
public SendMailException(String message)
Constructs a new SendMailException with the specified detail message.- Parameters:
message- the detail message- Since:
- 1.3.0
-
SendMailException
public SendMailException(String message, Throwable cause)
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
public SendMailException(Throwable cause)
Constructs a new SendMailException with the specified cause.- Parameters:
cause- the cause of the exception- Since:
- 1.3.0
-
-