Package org.apache.ignite.client
Class ClientAuthorizationException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.client.ClientException
- 
- org.apache.ignite.client.ClientAuthorizationException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class ClientAuthorizationException extends ClientException Indicates user has no permission to perform operation.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ClientAuthorizationException()Default constructor.ClientAuthorizationException(String msg, Throwable cause)Constructs a new exception with the specified detail message and cause.ClientAuthorizationException(Throwable cause)Constructs a new exception with the specified cause and a detail message of (cause==null ?
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ClientAuthorizationExceptionpublic ClientAuthorizationException() Default constructor.
 - 
ClientAuthorizationExceptionpublic ClientAuthorizationException(Throwable cause) Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).- Parameters:
- cause- the cause.
 
 
- 
 
-