Uses of Class
org.hibernate.QueryException
-
Packages that use QueryException Package Description org.hibernate org.hibernate.persister.collection org.hibernate.persister.entity org.hibernate.query org.hibernate.query.sqm org.hibernate.sql -
-
Uses of QueryException in org.hibernate
Subclasses of QueryException in org.hibernate Modifier and Type Class Description classQueryParameterExceptionParameter invalid or not found in the query.Methods in org.hibernate that return QueryException Modifier and Type Method Description protected QueryExceptionQueryException. generateQueryException(String queryString)Called fromwrapWithQueryString(String)when we really need to generate a new QueryException (or subclass).protected QueryExceptionQueryParameterException. generateQueryException(String queryString)QueryExceptionQueryException. wrapWithQueryString(String queryString)Wraps this exception with another, of same kind, with the specified queryString. -
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)TypeAbstractCollectionPersister. toType(String propertyName)TypeElementPropertyMapping. toType(String propertyName) -
Uses of QueryException in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return QueryException Modifier and Type Method Description protected QueryExceptionAbstractPropertyMapping. propertyException(String propertyName)Methods in org.hibernate.persister.entity that throw QueryException Modifier and Type Method Description protected QueryExceptionAbstractPropertyMapping. propertyException(String propertyName)String[]AbstractEntityPersister. toColumns(String propertyName)Given a property path, return the corresponding column name(s).String[]AbstractPropertyMapping. toColumns(String propertyName)String[]PropertyMapping. toColumns(String propertyName)Given a property path, return the corresponding column name(s).TypeAbstractEntityPersister. toType(String propertyName)Given a component path expression, get the type of the propertyTypeAbstractPropertyMapping. toType(String propertyName)TypePropertyMapping. toType(String propertyName)Given a component path expression, get the type of the property -
Uses of QueryException in org.hibernate.query
Subclasses of QueryException in org.hibernate.query Modifier and Type Class Description classIllegalMutationQueryExceptionIndicates an attempt to callQueryProducer.createMutationQuery(String),QueryProducer.createNamedMutationQuery(String)orQueryProducer.createNativeMutationQuery(String)with a non-mutation query (generally a select query)classIllegalNamedQueryOptionsExceptionIndicates a named-query has specified options that are not legalclassIllegalQueryOperationExceptionIndicates an attempt to perform some operation on a Query that is illegal based on its state, e.g., attempt to callQuery.executeUpdate()on a SELECT query.classIllegalSelectQueryExceptionIndicates an attempt to callQueryProducer.createSelectionQuery(String)with a non-selection query (generally a mutation query)classNotIndexedCollectionExceptionIndicates an attempt to use a non-indexed collection as indexed.classSemanticExceptionRepresents an error in the semantics (meaning) of the passed query.classUnknownNamedQueryExceptionIndicates a request for a named-query when no query is registered under that name -
Uses of QueryException in org.hibernate.query.sqm
Subclasses of QueryException in org.hibernate.query.sqm Modifier and Type Class Description classAliasCollisionExceptionclassInterpretationExceptionRepresents a general uncaught problem performing the interpretation.classLiteralNumberFormatExceptionclassStrictJpaComplianceViolationIndicates violations of strict JPQL syntax while strict JPQL syntax checking was enabled.classUnknownEntityExceptionIndicates we were not able to resolve a given "path structure" as an entity name.classUnknownPathExceptiontodo (6.0) : account for this in the "exception conversion" handling -
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)
-