Class InvalidColumnNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.InvalidColumnNameException
- All Implemented Interfaces:
Serializable
Exception thrown when an invalid column name is detected.
This exception is used to indicate that an entity contains a column name that is either empty, incorrectly formatted, or does not match the expected database schema.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidColumnNameException
(String message) Constructs a newInvalidColumnNameException
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
-
InvalidColumnNameException
Constructs a newInvalidColumnNameException
with the specified detail message.- Parameters:
message
- The detail message explaining the reason for the exception.
-