Package modelarium.exceptions
Class AttributeAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
modelarium.exceptions.AttributeAccessException
- All Implemented Interfaces:
Serializable
Exception for indicating that an attribute was accessed in a way that is not permitted.
This exception is thrown when a private attribute is requested by another entity, or when an attribute is requested as a type (event, routine or property) that does not match its actual type.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAttributeAccessException(String message) Constructs a new attribute access 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
-
AttributeAccessException
Constructs a new attribute access exception with the specified detail message.- Parameters:
message- the detail message describing the disallowed access
-