Package org.xwiki.filter
Class FilterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.filter.FilterException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FilterStreamTypeException
,IncompatibleFilterException
public class FilterException extends Exception
Encapsulates filters errors.- Since:
- 5.2M2
- Version:
- $Id: ddb6cad21110cd15caedfbdc6ce8e979a73b0680 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FilterException(String message)
FilterException(String message, Throwable cause)
FilterException(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
-
FilterException
public FilterException(String message)
- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
FilterException
public FilterException(Throwable cause)
- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
FilterException
public FilterException(String message, Throwable cause)
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
-