Package org.apache.wiki.api.exceptions
Class WikiException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.wiki.api.exceptions.WikiException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DecisionRequiredException
,FilterException
,NoRequiredPropertyException
,NoSuchOutcomeException
,NoSuchVariableException
,ParseException
,PluginException
,ProviderException
,WikiI18nException
,WikiSecurityException
public class WikiException extends java.lang.Exception
A generic Wiki exception.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WikiException(java.lang.String msg)
Constructs an exception.WikiException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a supplied cause.
-
-
-
Constructor Detail
-
WikiException
public WikiException(java.lang.String msg)
Constructs an exception.- Parameters:
msg
- the message in the exception.
-
WikiException
public WikiException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a supplied cause.- Parameters:
msg
- the message in the exception.cause
- the cause of the exception
-
-