Package org.dbunit.dataset
Class RowOutOfBoundsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
org.dbunit.dataset.RowOutOfBoundsException
- All Implemented Interfaces:
Serializable
Signals that a requested row index is outside a table's valid range.
- Since:
- Feb 17, 2002
- Version:
- $Revision$
- Author:
- Manuel Laflamme
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructs aRowOutOfBoundsExceptionwith the specified detail message.RowOutOfBoundsException(String msg, Throwable e) Constructs aRowOutOfBoundsExceptionwith the specified detail message and cause.Constructs aRowOutOfBoundsExceptionwith the specified cause. -
Method Summary
Methods inherited from class org.dbunit.DatabaseUnitException
getExceptionMethods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RowOutOfBoundsException
public RowOutOfBoundsException()Default constructor. -
RowOutOfBoundsException
Constructs aRowOutOfBoundsExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
RowOutOfBoundsException
Constructs aRowOutOfBoundsExceptionwith the specified detail message and cause.- Parameters:
msg- the detail message.e- the cause.
-
RowOutOfBoundsException
Constructs aRowOutOfBoundsExceptionwith the specified cause.- Parameters:
e- the cause.
-
-
Method Details
-
fillInStackTrace
Suppresses stack trace capture. This exception is thrown once per table scan as normal end-of-rows control flow, not as an error condition, so capturing a stack trace on every throw is wasted work.- Overrides:
fillInStackTracein classThrowable- Returns:
- This exception, without a captured stack trace.
-