Package org.dbunit

Class DatabaseUnitRuntimeException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CsvParserException, IllegalInputCharacterException, PipelineException, SqlLoaderControlParserException

public class DatabaseUnitRuntimeException extends RuntimeException
Base unchecked exception for errors raised by the DbUnit framework.
Since:
1.0
Version:
$Revision$ $Date$
Author:
Manuel Laflamme, Last changed by: $Author$
See Also:
  • Constructor Details

    • DatabaseUnitRuntimeException

      public DatabaseUnitRuntimeException()
      Constructs an DatabaseUnitRuntimeException with no specified detail message and no encapsulated exception.
    • DatabaseUnitRuntimeException

      public DatabaseUnitRuntimeException(String msg)
      Constructs an DatabaseUnitRuntimeException with the specified detail message and no encapsulated exception.
      Parameters:
      msg - the detail message.
    • DatabaseUnitRuntimeException

      public DatabaseUnitRuntimeException(String msg, Throwable cause)
      Constructs an DatabaseUnitRuntimeException with the specified detail message and encapsulated exception.
      Parameters:
      msg - the detail message.
      cause - The cause of this exception
    • DatabaseUnitRuntimeException

      public DatabaseUnitRuntimeException(Throwable cause)
      Constructs an DatabaseUnitRuntimeException with the encapsulated exception and use its message as detail message.
      Parameters:
      cause - The cause of this exception
  • Method Details

    • getException

      public Throwable getException()
      Deprecated.
      Returns the encapsulated exception or null if none.
      Returns:
      the encapsulated exception, or null if none.