Class IgniteClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.internal.processors.platform.client.IgniteClientException
-
- All Implemented Interfaces:
Serializable
public class IgniteClientException extends IgniteException
Client exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteClientException(int statusCode, String msg)Constructor.IgniteClientException(int statusCode, String msg, Throwable cause)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intstatusCode()Gets the status code.-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteClientException
public IgniteClientException(int statusCode, String msg)Constructor.- Parameters:
statusCode- Status code (seeClientStatus).msg- Message.
-
IgniteClientException
public IgniteClientException(int statusCode, String msg, Throwable cause)Constructor.- Parameters:
statusCode- Status code (seeClientStatus).msg- Message.cause- Cause.
-
-