Package org.xwiki.wiki.user.script
Class WikiUserManagerScriptServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.xwiki.wiki.user.script.WikiUserManagerScriptServiceException
- All Implemented Interfaces:
Serializable
Encapsulate any exception related to WikiUserManagerScriptService}.
- Since:
- 5.4RC1
- Version:
- $Id: a9c18c533e56d40669e6ee79b2c39aca9a0d331d $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct an exception with the specified detail message.WikiUserManagerScriptServiceException(String message, Throwable throwable) 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 Details
-
WikiUserManagerScriptServiceException
Construct an exception with the specified detail message.- Parameters:
message- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
WikiUserManagerScriptServiceException
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)
-