1 28 29 package com.caucho.xsl; 30 31 import com.caucho.util.ExceptionWrapper; 32 33 import javax.xml.transform.TransformerConfigurationException ; 34 35 38 public class TransformerConfigurationExceptionWrapper 39 extends TransformerConfigurationException 40 implements ExceptionWrapper { 41 42 45 public TransformerConfigurationExceptionWrapper() 46 { 47 } 48 49 52 public TransformerConfigurationExceptionWrapper(String msg) 53 { 54 super(msg); 55 } 56 57 60 public TransformerConfigurationExceptionWrapper(String msg, Throwable e) 61 { 62 super(msg, e); 63 } 64 65 68 public TransformerConfigurationExceptionWrapper(Throwable e) 69 { 70 super(e); 71 } 72 73 76 public Throwable getRootCause() 77 { 78 return getCause(); 79 } 80 } 81 82 83 84 85 86 87 | Popular Tags |