Package org.xwiki.user
Class UserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.user.UserException
-
- All Implemented Interfaces:
Serializable
@Unstable public class UserException extends Exception
Generic exception for the user api module.- Since:
- 14.6RC1, 14.4.3, 13.10.8
- Version:
- $Id: 00d70085dd763d87e915b3223f5f3dc5c35fc078 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserException(String message, Throwable cause)
Constructs a new user 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
-
UserException
public UserException(String message, Throwable cause)
Constructs a new user exception with the specified detail message and 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.)
-
-