Class UserAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.SecurityException
com.gigaspaces.security.SecurityException
com.gigaspaces.security.directory.UserAlreadyExistsException
- All Implemented Interfaces:
Serializable
Thrown if an
UserManager implementation encounters a non unique user.- Since:
- 7.0.1
- Author:
- Moran Avigdor
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aUserAlreadyExistsExceptionwith no detail message.Constructs aUserAlreadyExistsExceptionwith the specified detail message.UserAlreadyExistsException(String message, Throwable cause) Creates aUserAlreadyExistsExceptionwith the specified detail message and cause.Creates aUserAlreadyExistsExceptionwith the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of 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
-
UserAlreadyExistsException
public UserAlreadyExistsException()Constructs aUserAlreadyExistsExceptionwith no detail message. -
UserAlreadyExistsException
Constructs aUserAlreadyExistsExceptionwith the specified detail message.- Parameters:
s- the detail message.
-
UserAlreadyExistsException
Creates aUserAlreadyExistsExceptionwith 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). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
UserAlreadyExistsException
Creates aUserAlreadyExistsExceptionwith the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-