Package modelarium.exceptions
Class MissingAttributeFunctionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
modelarium.exceptions.MissingAttributeFunctionException
- All Implemented Interfaces:
Serializable
Exception for indicating that a functional attribute was used without a required logic function.
This exception is thrown when a functional attribute (such as a functional event or property) is run, triggered, set or read without the corresponding function having been provided during construction.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMissingAttributeFunctionException(String message) Constructs a new missing attribute function exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MissingAttributeFunctionException
Constructs a new missing attribute function exception with the specified detail message.- Parameters:
message- the detail message describing which function is missing and for which attribute
-