Package org.apache.batik.svggen
Interface ErrorHandler
-
- All Known Implementing Classes:
DefaultErrorHandler
public interface ErrorHandlerTheErrorHandlerinterface allows you to specialize how the error will be set on an SVGElement.- Version:
- $Id: ErrorHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleError(SVGGraphics2DIOException ex)This method handles theSVGGraphics2DIOException.voidhandleError(SVGGraphics2DRuntimeException ex)This method handles theSVGGraphics2DRuntimeException.
-
-
-
Method Detail
-
handleError
void handleError(SVGGraphics2DIOException ex) throws SVGGraphics2DIOException
This method handles theSVGGraphics2DIOException.- Throws:
SVGGraphics2DIOException
-
handleError
void handleError(SVGGraphics2DRuntimeException ex) throws SVGGraphics2DRuntimeException
This method handles theSVGGraphics2DRuntimeException.- Throws:
SVGGraphics2DRuntimeException
-
-