com.github.spuchmann.xml.splitter.XmlSplitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-splitter Show documentation
Show all versions of xml-splitter Show documentation
A simple java library which makes it easy to split xml files into fragments.
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);
}
}