Class MissingAnnotationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.MissingAnnotationException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate that an operation or functionality in a program expects
the presence of a specific annotation, but the required annotation is missing.
This exception is typically used when a runtime check for a particular annotation fails.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorDescriptionMissingAnnotationException
(String message) Constructs a new MissingAnnotationException 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
-
MissingAnnotationException
Constructs a new MissingAnnotationException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-