![JAR search and dependency download from the Maven repository](/logo.png)
de.julielab.xml.FieldValueRetrievalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of julie-xml-tools Show documentation
Show all versions of julie-xml-tools Show documentation
Reads XML using the VTD parser.
package de.julielab.xml;
public class FieldValueRetrievalException extends Exception {
public FieldValueRetrievalException() {
}
public FieldValueRetrievalException(String message) {
super(message);
}
public FieldValueRetrievalException(String message, Throwable cause) {
super(message, cause);
}
public FieldValueRetrievalException(Throwable cause) {
super(cause);
}
public FieldValueRetrievalException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy