Package org.xwiki.extension.xar
Class XarExtensionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.extension.ExtensionException
-
- org.xwiki.extension.xar.XarExtensionException
-
- All Implemented Interfaces:
Serializable
public class XarExtensionException extends org.xwiki.extension.ExtensionException
Base exception for all XAR extension handler specific APIs.- Since:
- 10.5RC1
- Version:
- $Id: d3ab9df43581e00c2a1958257ff92a229e711d14 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XarExtensionException(String message)
XarExtensionException(String message, Throwable cause)
XarExtensionException(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
-
XarExtensionException
public XarExtensionException(String message)
- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
XarExtensionException
public XarExtensionException(Throwable cause)
- Parameters:
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
-
XarExtensionException
public XarExtensionException(String message, Throwable cause)
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).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
-
-