org.edg.data.util
Class DataError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.edg.data.util.DataError
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
InvalidCatalogEntryException, MissingReplacementValueException

public class DataError
extends java.lang.RuntimeException

Base exception class for all unckecked WP2 exceptions.

Version:
$Id: DataError.java,v 1.3 2004/04/01 11:39:13 jamesc Exp $
Author:
Peter Kunszt
See Also:
Serialized Form

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

DataError

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

Parameters:
message - the message

DataError

public DataError(java.lang.Throwable t)
Constructs a DataError from another Throwable.

Parameters:
t - the throwable which is the cause

DataError

public DataError(java.lang.String message,
                 java.lang.Throwable t)