Package org.xwiki.edit
Class EditException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.xwiki.edit.EditException
- All Implemented Interfaces:
Serializable
An edit exception.
- Since:
- 8.2RC1
- Version:
- $Id: 4f4ac13ba08394da15b4c5d026165ed2e62be097 $
- See Also:
-
Constructor Summary
ConstructorDescriptionEditException
(String message) Construct an exception with the specified detail message.EditException
(String message, Throwable throwable) Construct an 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 Details
-
EditException
Construct an exception with the specified detail message.- Parameters:
message
- the detailed message; this can later be retrieved by the Throwable.getMessage() method
-
EditException
Construct an exception with the specified detail message and cause.- Parameters:
message
- the detailed message; this can later be retrieved by the Throwable.getMessage() methodthrowable
- 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)
-