Class EntityStateWasChangeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateGeneralException
io.github.blyznytsiaorg.bibernate.exception.EntityStateWasChangeException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate that the state of an entity in a Bibernate application
was changed unexpectedly. This exception is typically used when an attempt to modify
the state of an entity contradicts the expected or allowed changes.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorDescriptionEntityStateWasChangeException
(String message) Constructs a new EntityStateWasChangeException 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
-
EntityStateWasChangeException
Constructs a new EntityStateWasChangeException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-