com.penguinwerks.jodene.data
Class DataReadingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.penguinwerks.jodene.data.DataReadingException
All Implemented Interfaces:
java.io.Serializable

public class DataReadingException
extends java.lang.Exception

A DataReadingException is thrown to indicate an error during data reading.

Author:
Paul Hoehne
See Also:
Serialized Form

Constructor Summary
DataReadingException()
          Default constructor.
DataReadingException(java.lang.String arg0)
          Constructor with the message.
DataReadingException(java.lang.String arg0, java.lang.Throwable arg1)
          Constructor with the message and the exception which generated this exception.
DataReadingException(java.lang.Throwable arg0)
          Constructor with the generating exception.
 
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

DataReadingException

public DataReadingException()
Default constructor.


DataReadingException

public DataReadingException(java.lang.String arg0)
Constructor with the message.

Parameters:
arg0 - The message

DataReadingException

public DataReadingException(java.lang.String arg0,
                            java.lang.Throwable arg1)
Constructor with the message and the exception which generated this exception.

Parameters:
arg0 - The message string
arg1 - The parent exception.

DataReadingException

public DataReadingException(java.lang.Throwable arg0)
Constructor with the generating exception.

Parameters:
arg0 - The exception that percipitated this exception.