Package org.xwiki.mail
Class MailStoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.mail.MailStoreException
-
- All Implemented Interfaces:
Serializable
public class MailStoreException extends Exception
Encapsulate a Mail Store error.- Since:
- 6.4M3
- Version:
- $Id: 062551a648ee8d249d7d6ce37b1bf74cedcb0667 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MailStoreException(String message)
Construct a new exception with the specified detail message.MailStoreException(String message, Throwable throwable)
Construct a new exception with the specified detail message and 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
-
MailStoreException
public MailStoreException(String message)
Construct a new exception with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
MailStoreException
public MailStoreException(String message, Throwable throwable)
Construct a new exception with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.throwable
- the cause. This can be retrieved later by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-
-