Class MissingRepositoryAnnotationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.MissingRepositoryAnnotationException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionConstructs a newMissingRepositoryAnnotationException
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
-
MissingRepositoryAnnotationException
Constructs a newMissingRepositoryAnnotationException
with the specified detail message.- Parameters:
message
- The detail message explaining the reason for the exception.
-