Package org.apache.ignite.client
Class ClientReconnectedException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.client.ClientException
- 
- org.apache.ignite.client.ClientReconnectedException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class ClientReconnectedException extends ClientException Indicates that previous connection was lost and a new connection established, which can lead to inconsistency of non-atomic operations.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ClientReconnectedException()Default constructor.ClientReconnectedException(String msg)Constructs a new exception with the specified message.ClientReconnectedException(String msg, Throwable cause)Constructs a new exception with the specified cause and detail message.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ClientReconnectedExceptionpublic ClientReconnectedException() Default constructor.
 - 
ClientReconnectedExceptionpublic ClientReconnectedException(String msg) Constructs a new exception with the specified message.- Parameters:
- msg- Detailed exception message.
 
 
- 
 
-