Class TransmissionCancelledException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.internal.managers.communication.TransmissionCancelledException
-
- All Implemented Interfaces:
Serializable
public class TransmissionCancelledException extends IgniteException
Exception is used to cancel a file transmission operation on the receiver. This exception may be thrown at anytime during session handling by aTransmissionHandlerto gracefully interrupt the transmission session on a node-sender.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransmissionCancelledException()Default no-op consturctor.TransmissionCancelledException(String msg)
-
Method Summary
-
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
-
TransmissionCancelledException
public TransmissionCancelledException()
Default no-op consturctor.
-
TransmissionCancelledException
public TransmissionCancelledException(String msg)
- Parameters:
msg- Cancellation cause.
-
-