xmlparser.error.InvalidXml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
package xmlparser.error;
public final class InvalidXml extends RuntimeException {
public InvalidXml() {}
public InvalidXml(final String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy