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

edu.stanford.protege.webprotege.frame.SetManchesterSyntaxFrameException Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.frame;



/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 25/07/15
 */
public class SetManchesterSyntaxFrameException extends RuntimeException {

    private ManchesterSyntaxFrameParseError error;

    private SetManchesterSyntaxFrameException() {
    }

    public SetManchesterSyntaxFrameException(ManchesterSyntaxFrameParseError error) {
        super(error.getMessage());
        this.error = error;
    }

    public ManchesterSyntaxFrameParseError getError() {
        return error;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy