istack-commons.src.main.java.com.sun.istack.SAXParseException2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package com.sun.istack;
import org.xml.sax.SAXParseException;
import org.xml.sax.Locator;
/**
* {@link SAXParseException} that handles exception chaining correctly.
*
* @author Kohsuke Kawaguchi
* @since 2.0 FCS
*/
public class SAXParseException2 extends SAXParseException {
public SAXParseException2(String message, Locator locator) {
super(message, locator);
}
public SAXParseException2(String message, Locator locator, Exception e) {
super(message, locator, e);
}
public SAXParseException2(String message, String publicId, String systemId, int lineNumber, int columnNumber) {
super(message, publicId, systemId, lineNumber, columnNumber);
}
public SAXParseException2(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) {
super(message, publicId, systemId, lineNumber, columnNumber, e);
}
public Throwable getCause() {
return getException();
}
}