Package de.xima.fc.exceptions
Class MailContextNotAvailableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.xima.fc.exceptions.MailContextNotAvailableException
-
- All Implemented Interfaces:
Serializable
public class MailContextNotAvailableException extends RuntimeException
Exception thrown when an email cannot be send because no mail context (=mail server configuration) is available.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MailContextNotAvailableException(String message)
MailContextNotAvailableException(String message, Throwable cause)
MailContextNotAvailableException(Throwable 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
-
MailContextNotAvailableException
public MailContextNotAvailableException(String message)
- Parameters:
message
- Message with more details why the mail context is not available.
-
MailContextNotAvailableException
public MailContextNotAvailableException(String message, Throwable cause)
- Parameters:
message
- Message with more details why the mail context is not available.cause
- Underlying cause why the mail context is not available, such as a database error.
-
MailContextNotAvailableException
public MailContextNotAvailableException(Throwable cause)
- Parameters:
cause
- Underlying cause why the mail context is not available, such as a database error.
-
-