com.hazelcast.core
Class RuntimeInterruptedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.hazelcast.core.HazelcastException
                  extended by com.hazelcast.core.RuntimeInterruptedException
All Implemented Interfaces:
Serializable

public class RuntimeInterruptedException
extends HazelcastException

An unchecked version of InterruptedException.

Some of the Hazelcast operations may 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

Constructor Summary
RuntimeInterruptedException()
           
RuntimeInterruptedException(String message)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RuntimeInterruptedException

public RuntimeInterruptedException()

RuntimeInterruptedException

public RuntimeInterruptedException(String message)


Copyright © 2008-2012 Hazelcast, Inc. All Rights Reserved.