Package org.apache.ignite.client
Class ClientException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.client.ClientException
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- ClientAuthenticationException,- ClientAuthorizationException,- ClientConnectionException,- ClientFeatureNotSupportedByServerException,- ClientReconnectedException
 
 public class ClientException extends RuntimeException Common thin client unchecked exception.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ClientException()Constructs a new exception withnullas its detail message.ClientException(String msg)Constructs a new exception with the specified detail message.ClientException(String msg, Throwable cause)Constructs a new exception with the specified detail message and cause.ClientException(String msg, Throwable cause, boolean enableSuppression, boolean writableStackTrace)Constructs a new exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.ClientException(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- 
ClientExceptionpublic ClientException() Constructs a new exception withnullas its detail message.
 - 
ClientExceptionpublic ClientException(String msg) Constructs a new exception with the specified detail message.- Parameters:
- msg- the detail message.
 
 - 
ClientExceptionpublic ClientException(Throwable cause) Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).- Parameters:
- cause- the cause.
 
 - 
ClientExceptionpublic ClientException(String msg, Throwable cause) Constructs a new exception with the specified detail message and cause.- Parameters:
- msg- the detail message.
- cause- the cause.
 
 - 
ClientExceptionpublic ClientException(String msg, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.- Parameters:
- msg- the detail message.
- cause- the cause.
- enableSuppression- whether or not suppression is enabled or disabled
- writableStackTrace- whether or not the stack trace should be writable
 
 
- 
 
-