public interface LoaderError
An error that occurred during loading. Errors are only handled when they were
 caused by 
DataAccessException's. IOException's and other
 problems will abort loading fatally.- Author:
- Lukas Eder
- 
Method SummaryModifier and TypeMethodDescriptionThe underlyingDataAccessExceptionthat caused the error.query()The query whose execution failed.String[]row()The row data that caused the error.introwIndex()The processed row index starting with0that caused the error.
- 
Method Details- 
exceptionDataAccessException exception()The underlyingDataAccessExceptionthat caused the error.
- 
rowIndexint rowIndex()The processed row index starting with0that caused the error.If queries were executed in batch mode, this will be the row index of the last row added to the batch. 
- 
rowString[] row()The row data that caused the error.If queries were executed in batch mode, this will be the last row added to the batch. 
- 
queryQuery query()The query whose execution failed.
 
-