Class PredicateNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.upc.fib.inlab.imp.kse.logics.logicschema.domain.exceptions.IMPLogicsException
edu.upc.fib.inlab.imp.kse.logics.logicschema.domain.exceptions.PredicateNotFoundException
- All Implemented Interfaces:
Serializable
Thrown to indicate that a
Predicate
is not contained in a logic schema.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPredicateNotFoundException
(String predicateName) Constructs anPredicateNotFoundException
with one argument indicating the non-contained predicate name. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PredicateNotFoundException
Constructs anPredicateNotFoundException
with one argument indicating the non-contained predicate name.The predicate name is included in this exception's detail message. The exact presentation format of the detail message is unspecified.
- Parameters:
predicateName
- the non-contained predicate name.
-