Class ImmutableEntityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateGeneralException
io.github.blyznytsiaorg.bibernate.exception.ImmutableEntityException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate an attempt to modify an immutable entity
in a Bibernate application. This exception is typically used when an
operation attempts to alter an entity that is intended to remain immutable.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorDescriptionImmutableEntityException
(String message) Constructs a new ImmutableEntityException 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
-
ImmutableEntityException
Constructs a new ImmutableEntityException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-