
org.xmlet.xsdparser.xsdelements.exceptions.ParsingException Maven / Gradle / Ivy
package org.xmlet.xsdparser.xsdelements.exceptions;
/**
* An exception that is thrown whenever the parsing process encounters a error in the values present in the XSD file.
* The exception message contains valuable information to find and correct the error in the file.
*/
public class ParsingException extends RuntimeException {
public ParsingException(String message){
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy