Package org.apache.camel.component.xslt
Class XsltErrorListener
- java.lang.Object
-
- org.apache.camel.component.xslt.XsltErrorListener
-
- All Implemented Interfaces:
ErrorListener
public class XsltErrorListener extends Object implements ErrorListener
ErrorListenerwhich logs the errors and rethrow the exceptions for error and fatal conditions.
-
-
Constructor Summary
Constructors Constructor Description XsltErrorListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiderror(TransformerException e)voidfatalError(TransformerException e)voidwarning(TransformerException e)
-
-
-
Method Detail
-
warning
public void warning(TransformerException e) throws TransformerException
- Specified by:
warningin interfaceErrorListener- Throws:
TransformerException
-
error
public void error(TransformerException e) throws TransformerException
- Specified by:
errorin interfaceErrorListener- Throws:
TransformerException
-
fatalError
public void fatalError(TransformerException e) throws TransformerException
- Specified by:
fatalErrorin interfaceErrorListener- Throws:
TransformerException
-
-