Package de.xima.fc.exceptions
Class ArchiveException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.xima.fc.exceptions.ArchiveException
-
- All Implemented Interfaces:
Serializable
public class ArchiveException extends Exception
Exception for failed email archiving.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArchiveException(String message)
ArchiveException(String message, Throwable cause)
ArchiveException(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
-
ArchiveException
public ArchiveException(String message)
- Parameters:
message
- Message with more details why the mail context is not available.
-
ArchiveException
public ArchiveException(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.
-
ArchiveException
public ArchiveException(Throwable cause)
- Parameters:
cause
- Underlying cause why the mail context is not available, such as a database error.
-
-