All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xs4j.xmlspitter.XMLStreamRuntimeException Maven / Gradle / Ivy

Go to download

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