Package org.openscience.cdk.io
Interface IChemObjectReaderErrorHandler
public interface IChemObjectReaderErrorHandler
Interface for classes aimed to handle
IChemObjectReader
errors.- Author:
- Egon Willighagen <egonw@users.sf.net>
- Source code:
- main
- Belongs to CDK module:
- io
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handleError
(String message) Method that should react on an error message send by anIChemObjectReader
.void
handleError
(String message, int row, int colStart, int colEnd) Method that should react on an error message send by anIChemObjectReader
.void
handleError
(String message, int row, int colStart, int colEnd, Exception exception) Method that should react on an error message send by anIChemObjectReader
.void
handleError
(String message, Exception exception) Method that should react on an error message send by anIChemObjectReader
.
-
Method Details
-
handleError
Method that should react on an error message send by anIChemObjectReader
.- Parameters:
message
- Error found while reading.
-
handleError
Method that should react on an error message send by anIChemObjectReader
.- Parameters:
message
- Error found while reading.exception
- Exception thrown while reading.
-
handleError
Method that should react on an error message send by anIChemObjectReader
.- Parameters:
message
- Error found while reading.row
- Row in the file where the error is found.colStart
- Start column in the file where the error is found.colEnd
- End column in the file where the error is found.
-
handleError
Method that should react on an error message send by anIChemObjectReader
.- Parameters:
message
- Error found while reading.exception
- Exception thrown while reading.colStart
- Start column in the file where the error is found.colEnd
- End column in the file where the error is found.
-