public interface IGPEErrorHandler
Modifier and Type | Method and Description |
---|---|
void |
addError(java.lang.Throwable e)
This method is invoked when a parser has found
an error that has to stop the reading or the writing
process
|
void |
addWarning(java.lang.Throwable e)
This method is invoke when a parser has detected a
error, but it is able to manage it by itself
|
java.lang.Throwable |
getErrorAt(int i) |
int |
getErrorsSize() |
java.lang.Throwable |
getWarningAt(int i) |
int |
getWarningsSize() |
void addError(java.lang.Throwable e)
e
- The detected exceptionint getErrorsSize()
java.lang.Throwable getErrorAt(int i)
void addWarning(java.lang.Throwable e)
e
- The detected exceptionint getWarningsSize()
java.lang.Throwable getWarningAt(int i)