Class MissingTableAnnotationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.MissingTableAnnotationException
- All Implemented Interfaces:
Serializable
Exception thrown when an entity class is missing the required
@Table
annotation.
This exception indicates that a class intended to be mapped to a database table
does not have the @Table
annotation, which is required for the ORM framework
to recognize it as a database entity.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMissingTableAnnotationException
(String message) Constructs a newMissingTableAnnotationException
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
-
MissingTableAnnotationException
Constructs a newMissingTableAnnotationException
with the specified detail message.- Parameters:
message
- The detail message explaining the reason for the exception.
-