de.jaetzold.util
Class NoImmediateExecutionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--de.jaetzold.util.NoImmediateExecutionException
All Implemented Interfaces:
Serializable

public class NoImmediateExecutionException
extends Exception

This exception is used to indicate that the called method would have to wait for some condition to complete it's execution. E.g. that a read() would have to wait for data to be available.

See Also:
Serialized Form

Constructor Summary
NoImmediateExecutionException()
          Creates a new NoImmediateExecutionException without a detail message.
NoImmediateExecutionException(String message)
          Creates a new NoImmediateExecutionException with message as detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoImmediateExecutionException

public NoImmediateExecutionException()
Creates a new NoImmediateExecutionException without a detail message.

NoImmediateExecutionException

public NoImmediateExecutionException(String message)
Creates a new NoImmediateExecutionException with message as detail message.