Class MissingColumnAnnotationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.MissingColumnAnnotationException
All Implemented Interfaces:
Serializable

public class MissingColumnAnnotationException extends RuntimeException
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 Details

    • MissingColumnAnnotationException

      public MissingColumnAnnotationException(String message)
      Constructs a new MissingColumnAnnotationException with the specified detail message.
      Parameters:
      message - The detail message explaining the reason for the exception.