xmlparser.error.AssignmentFailure 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 AssignmentFailure extends RuntimeException {
public AssignmentFailure(final Throwable cause) {
super("A field could not be assigned with an object, should not happen, ever.", cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy