com.hazelcast.core
Class RuntimeInterruptedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.hazelcast.core.RuntimeInterruptedException
- All Implemented Interfaces:
- Serializable
public class RuntimeInterruptedException
- extends RuntimeException
An unchecked version of InterruptedException
.
Most of the Hazelcast operations throw an RuntimeInterruptedException
if a user thread is interrupted while waiting a response.
Hazelcast uses RuntimeInterruptedException to pass InterruptedException up through interfaces
that don't have InterruptedException in their signatures. Users should be able to catch and handle
RuntimeInterruptedException in such cases as if their threads are interrupted on
a blocking operation.
- See Also:
InterruptedException
,
Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
RuntimeInterruptedException
public RuntimeInterruptedException()
RuntimeInterruptedException
public RuntimeInterruptedException(String message)
Copyright © 2008-2012 Hazel Ltd. All Rights Reserved.