Package org.fastnate.data
Class DataImportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.fastnate.data.DataImportException
- All Implemented Interfaces:
Serializable
A runtime exception that can be used by all data providers to indicate the exact position of an error during import
of data.
- Author:
- Tobias Liefke
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataImportException(String message) Creates a new exception.DataImportException(String message, String file) Creates a new exception.DataImportException(String message, String file, int line) Creates a new exception.DataImportException(String message, String file, int line, int column) Creates a new exception.DataImportException(String message, String file, int line, int column, Throwable cause) Creates a new exception.DataImportException(String message, String file, int line, Throwable cause) Creates a new exception.DataImportException(String message, String file, Throwable cause) Creates a new exception.DataImportException(String message, Throwable cause) Creates a new exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
DataImportException
Creates a new exception.- Parameters:
message- the error message
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the error
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the errorline- the optional line that had the error (-1 if unknown)
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the errorline- the optional line that had the error (-1 if unknown)column- the optional column that had the error (-1 if unknown)
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the errorline- the optional line that had the error (-1 if unknown)column- the optional column that had the error (-1 if unknown)cause- the cause of the error
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the errorline- the optional line that had the error (-1 if unknown)cause- the cause of the error
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagefile- the optional file name that had the errorcause- the cause of the error
-
DataImportException
Creates a new exception.- Parameters:
message- the error messagecause- the cause of the error
-
-
Method Details