org.minueto
Class MinuetoEventQueueEmptyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.minueto.MinuetoEventQueueEmptyException
All Implemented Interfaces:
java.io.Serializable

public class MinuetoEventQueueEmptyException
extends java.lang.RuntimeException

Thrown by the handle method of the MinuetoEventQueue to indicate that the event queue is empty and there is no event to "handle".

Since:
Minueto 0.3
See Also:
MinuetoEventQueue, Serialized Form

Constructor Summary
MinuetoEventQueueEmptyException()
          Constructs a MinuetoEventQueueEmptyException with null as its error message string.
MinuetoEventQueueEmptyException(java.lang.String s)
          Constructs a MinuetoEventQueueEmptyException, saving a reference to the error message string s for later retrieval by the getMessage method.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MinuetoEventQueueEmptyException

public MinuetoEventQueueEmptyException()
Constructs a MinuetoEventQueueEmptyException with null as its error message string.


MinuetoEventQueueEmptyException

public MinuetoEventQueueEmptyException(java.lang.String s)
Constructs a MinuetoEventQueueEmptyException, saving a reference to the error message string s for later retrieval by the getMessage method.

Parameters:
s - String indicating the detailed message.