
com.legstar.xsd.InvalidXsdException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of legstar-distribution
Show all versions of legstar-distribution
Used to create a single distribution for the entire LegStar project.
The newest version!
package com.legstar.xsd;
/**
* Something is wrong with the input document. It cannot be parsed
* or does not contain a valid XML Schema.
*
*/
public class InvalidXsdException extends Exception {
/**
* A serial ID.
*/
private static final long serialVersionUID = 1L;
public InvalidXsdException(final String message) {
super(message);
}
public InvalidXsdException(final String message, Throwable cause) {
super(message, cause);
}
public InvalidXsdException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy