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