Package org.semanticweb.owlapi.reasoner

Examples of org.semanticweb.owlapi.reasoner.ReasonerInternalException


            sb.append("\n");
            sb.append(e.getMessage());
           
            log.error(sb.toString());
            monitor.taskEnded();
            throw new ReasonerInternalException(sb.toString(), e);
        }
       
        return canAxioms;
    }
View Full Code Here


    }

    private void checkNamedClass(OWLClassExpression ce)
            throws ReasonerInternalException {
        if (ce.isAnonymous()) {
            throw new ReasonerInternalException(
                    "Expected a named class, got " + ce);
        }
    }
View Full Code Here

        checkOntologyConsistent();
        checkNamedClass(ce);

        au.csiro.ontology.Node n = getNode(ce.asOWLClass());
        if(n == null) {
            throw new ReasonerInternalException("Named class "+ ce +
                    " not found!");
        }
        return nodeToOwlClassNode(n);
    }
View Full Code Here

     *             See {@link #getTimeOut()}.
     */
    public NodeSet<OWLClass> getDisjointClasses(OWLClassExpression ce)
            throws ReasonerInterruptedException, TimeOutException,
            FreshEntitiesException, InconsistentOntologyException {
        throw new ReasonerInternalException(
                "getDisjointClasses not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLObjectPropertyExpression> getSubObjectProperties(
            OWLObjectPropertyExpression pe, boolean direct)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getSubObjectProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLObjectPropertyExpression> getSuperObjectProperties(
            OWLObjectPropertyExpression pe, boolean direct)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getSuperObjectProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLObjectPropertyExpression> getDisjointObjectProperties(
            OWLObjectPropertyExpression pe)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getDisjointObjectProperties not implemented");
    }
View Full Code Here

     */
    public Node<OWLObjectPropertyExpression> getInverseObjectProperties(
            OWLObjectPropertyExpression pe)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getInverseObjectProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLClass> getObjectPropertyDomains(
            OWLObjectPropertyExpression pe, boolean direct)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getObjectPropertyDomains not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLClass> getObjectPropertyRanges(
            OWLObjectPropertyExpression pe, boolean direct)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getObjectPropertyRanges not implemented");
    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.reasoner.ReasonerInternalException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.