org.minueto
Class MinuetoFileException

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

public class MinuetoFileException
extends java.io.IOException

Thrown by several methods of the Minueto package to indicate that a read or write file error has occured.

Since:
Minueto 0.4
See Also:
MinuetoEventQueue, MinuetoEventQueue.handle(), Serialized Form

Constructor Summary
MinuetoFileException()
          Constructs a MinuetoFileException with null as its error message string.
MinuetoFileException(java.lang.String s)
          Constructs a MinuetoFileException, 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

MinuetoFileException

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


MinuetoFileException

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

Parameters:
s - String indicating the detailed message.