Package org.xwiki.rendering.macro
Class MacroSignatureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.rendering.macro.MacroSignatureException
-
- All Implemented Interfaces:
Serializable
public class MacroSignatureException extends Exception
Exception thrown by theSignableMacro
.- Since:
- 6.1M2
- Version:
- $Id: cedf1e6fd4d57fb48b21d9d49fe4adf37bee4180 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MacroSignatureException(String message)
Constructs a new exception with the specified detail message.MacroSignatureException(String message, Throwable cause)
Constructs a new 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
-
MacroSignatureException
public MacroSignatureException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
-
MacroSignatureException
public MacroSignatureException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.cause
- the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-