Package org.xwiki.wiki.user
Class WikiUserManagerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.wiki.user.WikiUserManagerException
-
- All Implemented Interfaces:
Serializable
public class WikiUserManagerException extends Exception
Encapsulate any exception related to Wiki User Manager.- Since:
- 5.1M1
- Version:
- $Id: 57dcd8861073c01f8324e922c3c7d9ff847c9ad2 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WikiUserManagerException(String message)
Construct an exception with the specified detail message.WikiUserManagerException(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 Detail
-
WikiUserManagerException
public WikiUserManagerException(String message)
Construct an exception with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
WikiUserManagerException
public WikiUserManagerException(String message, Throwable throwable)
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)
-
-