org.edg.data.util
Class DataException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.edg.data.util.DataException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CommandLineException, InvalidCatalogException, InvalidConfigurationException, InvalidConnectionException, InvalidFileTypeException, InvalidRegExpException

public class DataException
extends java.lang.Exception

Base exception class for all WP2 exceptions.

Version:
$Id: DataException.java,v 1.3 2004/03/30 14:52:37 jamesc Exp $
Author:
Peter Kunszt
See Also:
Serialized Form

Constructor Summary
DataException(java.lang.String message)
          Constructs a DataException with the specified detail message.
DataException(java.lang.String message, java.lang.Throwable exc)
           
DataException(java.lang.Throwable exc)
          Constructs a DataException from another 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

DataException

public DataException(java.lang.String message)
Constructs a DataException with the specified detail message.

Parameters:
message - the message

DataException

public DataException(java.lang.Throwable exc)
Constructs a DataException from another exception.

Parameters:
exc - the exception

DataException

public DataException(java.lang.String message,
                     java.lang.Throwable exc)