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

org.protege.editor.owl.model.SaveErrorHandler Maven / Gradle / Ivy

package org.protege.editor.owl.model;

import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyStorageException;

import java.net.URI;

/**
 * Author: drummond
* http://www.cs.man.ac.uk/~drummond/

* The University Of Manchester
* Bio Health Informatics Group
* Date: May 14, 2008

*/ public interface SaveErrorHandler { /** * * @param ont * @param physicalURIForOntology * @param e * @throws Exception */ void handleErrorSavingOntology(OWLOntology ont, URI physicalURIForOntology, OWLOntologyStorageException e) throws Exception; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy