1 17 package org.apache.excalibur.xml.xslt; 18 19 import org.apache.avalon.framework.CascadingException; 20 21 26 public class XSLTProcessorException 27 extends CascadingException 28 { 29 public XSLTProcessorException( final String message ) 30 { 31 super( message ); 32 } 33 34 public XSLTProcessorException( final String message, 35 final Throwable throwable ) 36 { 37 super( message, throwable ); 38 } 39 } 40 | Popular Tags |