Package org.xwiki.wiki.provisioning
Class WikiProvisioningJobException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.wiki.provisioning.WikiProvisioningJobException
-
- All Implemented Interfaces:
Serializable
@Deprecated public class WikiProvisioningJobException extends Exception
Deprecated.since 7.0M2Encapsulate any exception related to Wiki Provisioning Jobs.- Since:
- 5.3M2
- Version:
- $Id: c0a79e2390398e836139c206e0f780669edcb082 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WikiProvisioningJobException(String message)
Deprecated.Construct an exception with the specified detail message.WikiProvisioningJobException(String message, Throwable throwable)
Deprecated.Construct an 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
-
WikiProvisioningJobException
public WikiProvisioningJobException(String message)
Deprecated.Construct an exception with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
WikiProvisioningJobException
public WikiProvisioningJobException(String message, Throwable throwable)
Deprecated.Construct an exception with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.throwable
- the cause. This can be retrieved later by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-
-