Package org.semanticweb.owlapi.reasoner
Class FreshEntitiesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.semanticweb.owlapi.model.OWLRuntimeException
org.semanticweb.owlapi.reasoner.OWLReasonerRuntimeException
org.semanticweb.owlapi.reasoner.FreshEntitiesException
- All Implemented Interfaces:
Serializable
Indicates that a query whose signature contained fresh entities was posed to
the reasoner. This exception is only thrown if the fresh entity policy is set
appropriately. (See
FreshEntityPolicy
and
OWLReasonerConfiguration
.- Since:
- 3.0.0
- Author:
- Matthew Horridge, The University of Manchester, Information Management Group
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFreshEntitiesException
(Collection<OWLEntity> entities) FreshEntitiesException
(Collection<OWLEntity> entities, Throwable t) FreshEntitiesException
(OWLEntity entity) FreshEntitiesException
(OWLEntity entity, Throwable t) -
Method Summary
Modifier and TypeMethodDescriptionGets the entities.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FreshEntitiesException
- Parameters:
entities
- fresh entities
-
FreshEntitiesException
- Parameters:
entities
- entitiest
- cause
-
FreshEntitiesException
- Parameters:
entity
- fresh entity
-
FreshEntitiesException
- Parameters:
entity
- fresh entityt
- cause
-
-
Method Details
-
getEntities
Gets the entities.- Returns:
- The entities, none of which are contained in the signature of the union of a set of ontologies.
-
getMessage
- Overrides:
getMessage
in classThrowable
-