Class SqlExecutionException

All Implemented Interfaces:
Serializable

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

    • SqlExecutionException

      public SqlExecutionException(String message, Throwable cause)
      Constructs a new SqlExecutionException 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.