java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jooq.exception.DataAccessException
org.jooq.exception.MockFileDatabaseException
- All Implemented Interfaces:
- Serializable
An unexpected result can be encountered while loading a file-based
 
MockDataProvider.
 
 This exception may for instance indicate that the number of rows is not in
 accordance with the specified number of rows. I.e. it not be allowed for the
 file-based MockDataProvider to have this content:
 
 select "TABLE2"."ID2", "TABLE2"."NAME2" from "TABLE2"
 > +---+-----+
 > |ID2|NAME2|
 > +---+-----+
 > |1  |X    |
 > |2  |Y    |
 > +---+-----+
 @ rows: 1000
 - Author:
- Samy Deghou, Lukas Eder
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionMockFileDatabaseException(String message) Constructor for MockFileDatabaseException.MockFileDatabaseException(String message, Throwable cause) Constructor for MockFileDatabaseException.
- 
Method SummaryMethods inherited from class org.jooq.exception.DataAccessExceptiongetCause, getStackTrace, sqlState, sqlStateClass, sqlStateClass, sqlStateClass, sqlStateClass, sqlStateSubclass, sqlStateSubclassMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MockFileDatabaseExceptionConstructor for MockFileDatabaseException.- Parameters:
- message- the detail message
 
- 
MockFileDatabaseExceptionConstructor for MockFileDatabaseException.- Parameters:
- message- the detail message
- cause- the root cause
 
 
-