FileDocCategorySizeDatePackage
MailetException.javaAPI DocApache James 2.3.12059Fri Jan 12 12:56:34 GMT 2007org.apache.mailet

MailetException

public class MailetException extends MessagingException
Defines a general exception a mailet can throw when it encounters difficulty.
version
1.0.0, 24/04/1999

Fields Summary
Constructors Summary
public MailetException()
Constructs a new mailet exception.

        super();
    
public MailetException(String message)
Constructs a new mailet exception with the specified message.

        super(message);
    
public MailetException(String message, Exception e)
Constructs a new mailet exception when the mailet needs to throw an exception and include a message about the "root cause" exception that interfered with its normal operation, including a description message.

        super(message, e);
    
Methods Summary