Class SqlExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.SqlExecutionException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during SQL execution.
This exception indicates that an issue was encountered while executing an SQL statement, such as a syntax error, connection issue, or constraint violation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSqlExecutionException
(String message, Throwable cause) Constructs a newSqlExecutionException
with the specified detail message and the underlying cause of the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SqlExecutionException
Constructs a newSqlExecutionException
with the specified detail message and the underlying cause of the exception.- Parameters:
message
- The detail message explaining the reason for the exception.cause
- The underlying cause of the exception.
-