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 final IErrorReporter
    A default error reporter that ignores errors.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Method called when a decoding error occurs.
  • Field Details

    • IGNORE

      static final IErrorReporter IGNORE
      A default error reporter that ignores errors.
  • Method Details

    • exceptionOccurred

      void exceptionOccurred(Exception e)
      Method called when a decoding error occurs.
      Parameters:
      e - The exception occurred during decoding.