Package org.xwiki.rendering.executor
Class ContentExecutorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.rendering.executor.ContentExecutorException
-
- All Implemented Interfaces:
Serializable
public class ContentExecutorException extends Exception
Signify that an error happened during Content execution.- Since:
- 8.4RC1
- Version:
- $Id: bb192c529edbc7d7917dcb6ac64fecf9e8e8932e $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentExecutorException(String message)
Construct a new exception.ContentExecutorException(String message, Throwable throwable)
Construct a new exception for the specified 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
-
ContentExecutorException
public ContentExecutorException(String message)
Construct a new exception.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
ContentExecutorException
public ContentExecutorException(String message, Throwable throwable)
Construct a new exception for the specified cause.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.throwable
- 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)
-
-