Interface IErrorReporter
-
- All Known Implementing Classes:
DefaultErrorReporter
public interface IErrorReporter
Reporter receiving errors encountered during decoding.
-
-
Field Summary
Fields Modifier and Type Field Description static IErrorReporter
IGNORE
A default error reporter that ignores errors.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exceptionOccurred(java.lang.Exception e)
Method called when a decoding error occurs.
-
-
-
Field Detail
-
IGNORE
static final IErrorReporter IGNORE
A default error reporter that ignores errors.
-
-