![JAR search and dependency download from the Maven repository](/logo.png)
org.xs4j.xmlspitter.XMLStreamRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlslurper Show documentation
Show all versions of xmlslurper Show documentation
An attempt to port parsing capabilities offered by Groovy XMLSlurper into the Java world. The following is not planned to be accurate projection, instead the most useful functions will be implemented.
The newest version!
package org.xs4j.xmlspitter;
import javax.xml.stream.XMLStreamException;
import java.io.IOException;
/**
* Created by mturski on 12/9/2016.
*/
public class XMLStreamRuntimeException extends RuntimeException {
public XMLStreamRuntimeException(String message) {
super(message);
}
public XMLStreamRuntimeException(XMLStreamException e) {
super(e.getMessage(), e.getCause());
}
public XMLStreamRuntimeException(IOException e) {
super(e.getMessage(), e.getCause());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy