Class MissingColumnAnnotationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.MissingColumnAnnotationException
- All Implemented Interfaces:
Serializable
Exception thrown when a required
@Column
annotation is missing from an entity field.
This exception is used to indicate that a field within an entity class is expected
to be mapped to a database column but lacks the necessary @Column
annotation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMissingColumnAnnotationException
(String message) Constructs a newMissingColumnAnnotationException
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
-
MissingColumnAnnotationException
Constructs a newMissingColumnAnnotationException
with the specified detail message.- Parameters:
message
- The detail message explaining the reason for the exception.
-