All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmlet.xsdparser.xsdelements.exceptions.VisitorNotFoundException Maven / Gradle / Ivy

package org.xmlet.xsdparser.xsdelements.exceptions;

import org.xmlet.xsdparser.xsdelements.XsdAbstractElement;

/**
 * Exception that is thrown every time that an {@link XsdAbstractElement#accept} method is accessed when the concrete
 * element shouldn't receive visits.
 */
public class VisitorNotFoundException extends RuntimeException{

    public VisitorNotFoundException(String message){
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy