Package org.xwiki.velocity
Class XWikiVelocityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.velocity.XWikiVelocityException
-
- All Implemented Interfaces:
Serializable
public class XWikiVelocityException extends Exception
Any exception raised in the XWiki Velocity component must raise an exception of this type.- Version:
- $Id: af1c54d9bf218769864cb8587f2214216a685bcd $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XWikiVelocityException(String message)
Constructs a new exception with the specified detail message.XWikiVelocityException(String message, Throwable throwable)
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
-
XWikiVelocityException
public XWikiVelocityException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the exception message- See Also:
Exception(String)
-
XWikiVelocityException
public XWikiVelocityException(String message, Throwable throwable)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the exception messagethrowable
- the original exception to wrap- See Also:
Exception(String, Throwable)
-
-