Class MissingRepositoryAnnotationException

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

public class MissingRepositoryAnnotationException extends RuntimeException
Exception thrown when a repository class is missing the required @Repository annotation.

This exception indicates that a class intended to act as a repository for database operations does not have the necessary @Repository annotation, preventing it from being recognized by the ORM framework.

See Also:
  • Constructor Details

    • MissingRepositoryAnnotationException

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