Class SQLGrammarException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SQLGrammarException
    extends JDBCException
    Implementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc).
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SQLGrammarException​(java.lang.String message, java.sql.SQLException root)
      Constructor for JDBCException.
      SQLGrammarException​(java.lang.String message, java.sql.SQLException root, java.lang.String sql)
      Constructor for JDBCException.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SQLGrammarException

        public SQLGrammarException​(java.lang.String message,
                                   java.sql.SQLException root)
        Constructor for JDBCException.
        Parameters:
        root - The underlying exception.
      • SQLGrammarException

        public SQLGrammarException​(java.lang.String message,
                                   java.sql.SQLException root,
                                   java.lang.String sql)
        Constructor for JDBCException.
        Parameters:
        message - Optional message.
        root - The underlying exception.