Uses of Class
org.h2.message.DbException

Packages that use DbException
org.h2.command This package contains the parser and the base classes for prepared SQL statements. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.message Trace (logging facility) and error message tool. 
org.h2.table Classes related to a table and table meta data. 
org.h2.value Data type and value implementations. 
 

Uses of DbException in org.h2.command
 

Methods in org.h2.command that return DbException
protected  DbException Prepared.setRow(DbException e, int rowId, java.lang.String values)
          Set the SQL statement of the exception to the given row.
 

Methods in org.h2.command with parameters of type DbException
protected  DbException Prepared.setRow(DbException e, int rowId, java.lang.String values)
          Set the SQL statement of the exception to the given row.
 

Uses of DbException in org.h2.index
 

Methods in org.h2.index that return DbException
 DbException BaseIndex.getDuplicateKeyException()
           
 DbException Index.getDuplicateKeyException()
          Create a duplicate key exception with a message that contains the index name
 DbException MultiVersionIndex.getDuplicateKeyException()
           
 DbException PageDataIndex.getDuplicateKeyException()
           
 DbException PageDataIndex.getNewDuplicateKeyException()
           
 

Uses of DbException in org.h2.message
 

Methods in org.h2.message that return DbException
 DbException DbException.addSQL(java.lang.String sql)
          Set the SQL statement of the given exception.
static DbException DbException.convert(java.lang.Throwable e)
          Convert a throwable to an SQL exception using the default mapping.
static DbException DbException.convertInvocation(java.lang.reflect.InvocationTargetException te, java.lang.String message)
          Convert an InvocationTarget exception to a database exception.
static DbException DbException.convertIOException(java.io.IOException e, java.lang.String message)
          Convert an IO exception to a database exception.
static DbException DbException.get(int errorCode)
          Create a database exception for a specific error code.
static DbException DbException.get(int errorCode, java.lang.String... params)
          Create a database exception for a specific error code.
static DbException DbException.get(int errorCode, java.lang.String p1)
          Create a database exception for a specific error code.
static DbException DbException.get(int errorCode, java.lang.Throwable cause, java.lang.String... params)
          Create a database exception for a specific error code.
static DbException DbException.getInvalidValueException(java.lang.String value, java.lang.String param)
          Gets a SQL exception meaning this value is invalid.
static DbException DbException.getSyntaxError(java.lang.String sql, int index)
          Create a syntax error exception.
static DbException DbException.getSyntaxError(java.lang.String sql, int index, java.lang.String expected)
          Create a syntax error exception.
static DbException DbException.getUnsupportedException(java.lang.String message)
          Gets a SQL exception meaning this feature is not supported.
 

Uses of DbException in org.h2.table
 

Methods in org.h2.table that return DbException
 DbException TableLink.wrapException(java.lang.String sql, java.lang.Exception ex)
          Wrap a SQL exception that occurred while accessing a linked table.
 

Uses of DbException in org.h2.value
 

Methods in org.h2.value that return DbException
protected  DbException Value.throwUnsupportedExceptionForType(java.lang.String op)
          Throw the exception that the feature is not support for the given data type.