Class BadSqlGrammarException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.InvalidDataAccessResourceUsageException
org.springframework.r2dbc.BadSqlGrammarException
All Implemented Interfaces:
Serializable

public class BadSqlGrammarException extends org.springframework.dao.InvalidDataAccessResourceUsageException
Exception thrown when SQL specified is invalid. Such exceptions always have a R2dbcException root cause.

It would be possible to have subclasses for no such table, no such column etc. A custom R2dbcExceptionTranslator could create such more specific exceptions, without affecting code using this class.

Since:
5.3
Author:
Mark Paluch
See Also:
  • Constructor Details

    • BadSqlGrammarException

      public BadSqlGrammarException(String task, String sql, R2dbcException ex)
      Constructor for BadSqlGrammarException.
      Parameters:
      task - name of current task
      sql - the offending SQL statement
      ex - the root cause
  • Method Details

    • getR2dbcException

      public R2dbcException getR2dbcException()
      Return the wrapped R2dbcException.
    • getSql

      public String getSql()
      Return the SQL that caused the problem.