xmlparser.error.InvalidAnnotation 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 InvalidAnnotation extends RuntimeException {
public InvalidAnnotation(final String message) {
super(message);
}
public InvalidAnnotation(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy