Class MissingTableAnnotationException

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

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

    • MissingTableAnnotationException

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