Package org.xwiki.xar
Class XarException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.xar.XarException
-
- All Implemented Interfaces:
Serializable
public class XarException extends Exception
- Since:
- 5.4RC1
- Version:
- $Id: 6fa16a43e8562af4ca0fb5b194a914095e28b21c $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XarException(String message)
XarException(String message, Throwable cause)
XarException(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
-
XarException
public XarException(String message)
- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
XarException
public XarException(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
-
XarException
public XarException(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
-
-