Package org.xwiki.rendering.macro
Class MacroLookupException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.rendering.macro.MacroLookupException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MacroNotFoundException
public class MacroLookupException extends Exception
Encapsulate macro lookup error.- Since:
- 1.9M1
- Version:
- $Id: 937b0f2b1b6d4b0aa219711ab53c51166ba7a5af $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MacroLookupException(String message)
MacroLookupException(String message, Throwable 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
-
MacroLookupException
public MacroLookupException(String message)
- Parameters:
message
- the detail message.
-
MacroLookupException
public MacroLookupException(String message, Throwable cause)
- Parameters:
message
- the detail message.cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
-