com.iodesystems.xml.tools.XmlValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmltools Show documentation
Show all versions of xmltools Show documentation
Xmltools contains a flexible jaxb xml loader
package com.iodesystems.xml.tools;
public class XmlValidationException extends Exception {
public XmlValidationException() {}
public XmlValidationException(String message) {
super(message);
}
public XmlValidationException(String message, Throwable cause) {
super(message, cause);
}
public XmlValidationException(Throwable cause) {
super(cause);
}
public XmlValidationException(
String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy