Package com.helger.xml.sax
Interface ISAXErrorHandler
-
- All Superinterfaces:
ErrorHandler
- All Known Implementing Classes:
AbstractSAXErrorHandler,CollectingSAXErrorHandler,DoNothingSAXErrorHandler,LoggingSAXErrorHandler,WrappedCollectingSAXErrorHandler
public interface ISAXErrorHandler extends ErrorHandler
ExtendedErrorHandlerinterface with chaining method.- Since:
- 8.5.1
- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ISAXErrorHandlerandThen(ErrorHandler aOther)Create a new combined error handler that first invoked this handler, and afterwards the passed on.-
Methods inherited from interface org.xml.sax.ErrorHandler
error, fatalError, warning
-
-
-
-
Method Detail
-
andThen
@Nonnull default ISAXErrorHandler andThen(@Nullable ErrorHandler aOther)
Create a new combined error handler that first invoked this handler, and afterwards the passed on.- Parameters:
aOther- The other handler to use. May benull.- Returns:
- Never
null.
-
-