istack-commons.src.main.java.com.sun.istack.SAXException2 Maven / Gradle / Ivy
package com.sun.istack;
import org.xml.sax.SAXException;
/**
* {@link SAXException} that handles exception chaining correctly.
*
* @author Kohsuke Kawaguchi
* @since 2.0 FCS
*/
public class SAXException2 extends SAXException {
public SAXException2(String message) {
super(message);
}
public SAXException2(Exception e) {
super(e);
}
public SAXException2(String message, Exception e) {
super(message, e);
}
public Throwable getCause() {
return getException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy