Class RoleNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.SecurityException
com.gigaspaces.security.SecurityException
com.gigaspaces.security.directory.RoleNotFoundException
- All Implemented Interfaces:
Serializable
Thrown if an
RoleManager implementation cannot locate a role by its role-name- Since:
- 7.0.1
- Author:
- Moran Avigdor
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aRoleNotFoundExceptionwith no detail message.Constructs aRoleNotFoundExceptionwith the specified detail message.RoleNotFoundException(String message, Throwable cause) Creates aRoleNotFoundExceptionwith the specified detail message and cause.RoleNotFoundException(Throwable cause) Creates aRoleNotFoundExceptionwith 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
-
RoleNotFoundException
public RoleNotFoundException()Constructs aRoleNotFoundExceptionwith no detail message. -
RoleNotFoundException
Constructs aRoleNotFoundExceptionwith the specified detail message.- Parameters:
s- the detail message.
-
RoleNotFoundException
Creates aRoleNotFoundExceptionwith 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.)
-
RoleNotFoundException
Creates aRoleNotFoundExceptionwith 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.)
-