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

com.github.spuchmann.xml.splitter.XmlSplitException Maven / Gradle / Ivy

The newest version!
package com.github.spuchmann.xml.splitter;

/**
 * root exception for all split operations
 *
 * @since 0.1.0
 */
public class XmlSplitException extends Exception {

    public XmlSplitException() {
    }

    public XmlSplitException(String message) {
        super(message);
    }

    public XmlSplitException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy