Uses of Class
org.hibernate.QueryException
-
Packages that use QueryException Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.processor.validation Validation for HQL queries.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.produce.function Package defining support forSqmFunctionDescriptor
handling.org.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements. -
-
Uses of QueryException in org.hibernate
Subclasses of QueryException in org.hibernate Modifier and Type Class Description class
QueryParameterException
Indicates a problem with the runtime arguments bound to query parameters.Methods in org.hibernate that return QueryException Modifier and Type Method Description protected QueryException
QueryException. generateQueryException(String queryString)
Called fromwrapWithQueryString(String)
when we really need to generate a newQueryException
(or subclass).protected QueryException
QueryParameterException. generateQueryException(String queryString)
QueryException
QueryException. wrapWithQueryString(String queryString)
Deprecated, for removal: This API element is subject to removal in a future version.This method is no longer used -
Uses of QueryException in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that throw QueryException Modifier and Type Method Description String[]
AbstractCollectionPersister. toColumns(String propertyName)
Type
AbstractCollectionPersister. toType(String propertyName)
Type
ElementPropertyMapping. toType(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of QueryException in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return QueryException Modifier and Type Method Description protected QueryException
AbstractPropertyMapping. propertyException(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.hibernate.persister.entity that throw QueryException Modifier and Type Method Description protected QueryException
AbstractPropertyMapping. propertyException(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.String[]
AbstractEntityPersister. toColumns(String propertyName)
Given a property path, return the corresponding column name(s).String[]
AbstractPropertyMapping. toColumns(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.String[]
PropertyMapping. toColumns(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.Given a property path, return the corresponding column name(s).Type
AbstractEntityPersister. toType(String propertyName)
Given a component path expression, get the type of the propertyType
AbstractPropertyMapping. toType(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.Type
PropertyMapping. toType(String propertyName)
Deprecated, for removal: This API element is subject to removal in a future version.Given a component path expression, get the type of the property -
Uses of QueryException in org.hibernate.processor.validation
Methods in org.hibernate.processor.validation that throw QueryException Modifier and Type Method Description Type
MockCollectionPersister. toType(String propertyName)
Type
MockEntityPersister. toType(String propertyName)
-
Uses of QueryException in org.hibernate.query
Subclasses of QueryException in org.hibernate.query Modifier and Type Class Description class
IllegalMutationQueryException
Indicates an attempt to callQueryProducer.createMutationQuery(String)
,QueryProducer.createNamedMutationQuery(String)
orQueryProducer.createNativeMutationQuery(String)
with a non-mutation query (generally a select query)class
IllegalNamedQueryOptionsException
Indicates a named-query has specified options that are not legalclass
IllegalQueryOperationException
Thrown when an operation of theQuery
interface is called which is unsupported due to the nature of the query itself.class
IllegalSelectQueryException
Indicates an attempt to callQueryProducer.createSelectionQuery(String)
with a non-selection query (generally a mutation query)class
NamedQueryValidationException
Indicates that validation and translation of one or more named queries failed at initialization time.class
NotIndexedCollectionException
Indicates an attempt to use a non-indexed collection as indexed.class
ParameterLabelException
Indicates a problem with the labelling of query parameters.class
PathException
Indicates a problem with a path expression in HQL/JPQL.class
SemanticException
Represents an error in the semantics (meaning) of a HQL/JPQL query.class
SyntaxException
Represents a syntax error in a HQL/JPQL query.class
UnknownNamedQueryException
Occurs when a named query is requested, and there is no known HQL or native SQL query registered under the given name. -
Uses of QueryException in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal that throw QueryException Modifier and Type Method Description static void
ParameterParser. parse(String sqlString, ParameterRecognizer recognizer)
static void
ParameterParser. parse(String sqlString, ParameterRecognizer recognizer, boolean nativeJdbcParametersIgnored)
Performs the actual parsing and tokenizing of the query string making appropriate callbacks to the given recognizer upon recognition of the various tokens.protected String
SQLQueryParser. substituteBrackets(String sqlQuery)
-
Uses of QueryException in org.hibernate.query.sqm
Subclasses of QueryException in org.hibernate.query.sqm Modifier and Type Class Description class
AliasCollisionException
Occurs when the HQL query declares a duplicate identification variable in thefrom
clause, or a duplicate result column alias in theselect
clause.class
InterpretationException
Represents a generic unhandled problem which occurred while translating HQL/JPQL.class
LiteralNumberFormatException
class
ParsingException
Occurs when an unexpected condition is encountered while interpreting the output of the HQL parser.class
StrictJpaComplianceViolation
Indicates violations of strict JPQL syntax while strict JPQL syntax checking was enabled.class
UnknownEntityException
Indicates a failure to resolve an entity name in HQL to a known mapped entity type.class
UnknownPathException
Indicates a failure to resolve an element of a path expression in HQL/JPQL. -
Uses of QueryException in org.hibernate.query.sqm.produce.function
Subclasses of QueryException in org.hibernate.query.sqm.produce.function Modifier and Type Class Description class
FunctionArgumentException
Represents a problem with the argument list of a function in HQL/JPQL. -
Uses of QueryException in org.hibernate.sql
Constructors in org.hibernate.sql that throw QueryException Constructor Description ForUpdateFragment(Dialect dialect, LockOptions lockOptions, Map<String,String[]> keyColumnNames)
-