Package org.apache.ignite.internal.sql
Class SqlStrictParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.internal.sql.SqlParseException
-
- org.apache.ignite.internal.sql.SqlStrictParseException
-
- All Implemented Interfaces:
Serializable
public class SqlStrictParseException extends SqlParseException
Parse exception guarantees parse error without. Such error deliver to user statement isn't passed to H2 parser.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SqlStrictParseException(String msg, int errCode, SqlParseException e)Constructor.SqlStrictParseException(SqlParseException e)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description interrorCode()-
Methods inherited from class org.apache.ignite.internal.sql.SqlParseException
code, position, sql, toString
-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
SqlStrictParseException
public SqlStrictParseException(SqlParseException e)
Constructor.- Parameters:
e- SQL parse exception.
-
SqlStrictParseException
public SqlStrictParseException(String msg, int errCode, SqlParseException e)
Constructor.- Parameters:
e- SQL parse exception.msg- Error message.errCode- SQL error code.
-
-