org.gbif.datatester.exception
Class DataTesterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.gbif.datatester.exception.DataTesterException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConceptNotFoundException, IncompatibleTagTargetException, RecordSetException, TestConfigurationException, TestInitializationException, TestProcessingException, UnableToLoadConceptsException, UnknownDataTypeException, UnknownTagException

public class DataTesterException
extends java.lang.Exception

Generic class to embrace all possible exceptions that can be raised by framework classes.

Version:
$Revision: 1.1 $
Author:
Renato De Giovanni ( renato at cria . org . br )
See Also:
Serialized Form

Constructor Summary
DataTesterException(java.lang.Exception exception)
          Constructor with single Exception object.
DataTesterException(java.lang.String msg)
          Constructor with a single message.
DataTesterException(java.lang.String msg, java.lang.Exception exception)
          Constructor with message and Exception object.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataTesterException

public DataTesterException(java.lang.String msg)

Constructor with a single message.

Parameters:
msg - Message.

DataTesterException

public DataTesterException(java.lang.String msg,
                           java.lang.Exception exception)

Constructor with message and Exception object.

Parameters:
msg - Message.
exception - Exception object.

DataTesterException

public DataTesterException(java.lang.Exception exception)

Constructor with single Exception object.

Parameters:
exception - Exception object.