javax.xml.transform
Interface ErrorListener


public interface ErrorListener

Callback handler for errors.


Method Summary
 void error(TransformerException e)
          Callback for a recoverable error.
 void fatalError(TransformerException e)
          Callback for a fatal error.
 void warning(TransformerException e)
          Callback for a warning.
 

Method Detail

warning

public void warning(TransformerException e)
             throws TransformerException
Callback for a warning. After calling the warning method, the transformer will continue its processing.

error

public void error(TransformerException e)
           throws TransformerException
Callback for a recoverable error.

fatalError

public void fatalError(TransformerException e)
                throws TransformerException
Callback for a fatal error.