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
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.