Uses of Class
org.springframework.core.NestedRuntimeException
Packages that use NestedRuntimeException
Package
Description
Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.
Package containing Spring's basic AOP infrastructure, compliant with the
 AOP Alliance interfaces.
This package contains interfaces and classes for manipulating Java beans.
The core package implementing Spring's lightweight Inversion of Control (IoC) container.
Support infrastructure for bean definition parsing.
Classes supporting the 
org.springframework.beans.factory package.Contains an abstract XML-based 
BeanFactory implementation,
 including a standard "spring-beans" XSD.This package builds on the beans package to add support for
 message sources and for the Observer design pattern, and the
 ability for application objects to obtain resources using a
 consistent API.
Core support package for annotations, meta-annotations, and merged
 annotations with attribute overrides.
Type conversion system API.
Support classes for Spring's serializer abstraction.
Exception hierarchy enabling sophisticated error handling independent
 of the data access approach in use.
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
The classes in this package make JDBC easier to use and
 reduce the likelihood of common errors.
Provides extensible support for initializing databases through scripts.
Provides a strategy for looking up JDBC DataSources by name.
Abstraction for handling fields of SQLXML data type.
This package contains integration classes for JMS,
 allowing for Spring-style JMS access.
Provides a PlatformTransactionManager implementation for a single
 JMS ConnectionFactory, and a SingleConnectionFactory adapter.
Message listener adapter mechanism that delegates to target listener
 methods, converting messages to appropriate message content types
 (such as String or byte array) that get passed into listener methods.
Provides a MessageConverter abstraction to convert
 between Java objects and JMS messages.
Support classes for Spring's JMS framework.
This package contains Spring's JMX support, which includes registration of
 Spring-managed beans as JMX MBeans as well as access to remote JMX MBeans.
Provides support for accessing remote MBean resources.
This package provides declarative creation and registration of
 Spring-managed beans as JMX MBeans.
Provides generic JMX metadata classes and basic support for reading
 JMX metadata in a provider-agnostic manner.
Provides supporting infrastructure to allow Spring-created MBeans
 to send JMX notifications.
The classes in this package make JNDI easier to use,
 facilitating the accessing of configuration stored in JNDI,
 and provide useful superclasses for JNDI access classes.
Spring's generic mail infrastructure.
Support for working with messaging APIs and protocols.
Provides support for message conversion.
Defines interfaces and implementation classes for messaging templates.
Support classes for working with annotated message-handling methods.
Common infrastructure for invoking message handler methods.
Support classes for handling messages from simple messaging protocols
 (like STOMP).
Generic support for simple messaging protocols (like STOMP).
Root package for Spring's O/R Mapping integration classes.
Package providing integration of
 Hibernate 5.x
 with Spring concepts.
Package providing integration of JPA (Java Persistence API) with Spring concepts.
Root package for Spring's O/X Mapping integration classes.
The classes in this package make R2DBC easier to use and
 reduce the likelihood of common errors.
Provides extensible support for initializing databases through scripts.
Provides a strategy for looking up R2DBC ConnectionFactories by name.
Classes providing an abstraction over SQL bind markers.
General exceptions for Spring's scheduling support,
 independent of any specific scheduling system.
Support classes for the open source scheduler
 Quartz,
 allowing to set up Quartz Schedulers, JobDetails and
 Triggers as beans in a Spring context.
Core interfaces for Spring's scripting support.
Package providing integration of
 BeanShell
 (and BeanShell2)
 into Spring's scripting infrastructure.
Spring's core transaction management APIs (independent of any specific transaction
 management system); an exception hierarchy for Spring's transaction infrastructure;
 and transaction manager, definition, and status interfaces.
Common, generic interfaces that define minimal boundary points
 between Spring's web infrastructure and other framework modules.
Support classes for web data binding.
Core package of the client-side web support.
Support classes for annotation-based handler method processing.
Multipart resolution framework for handling file uploads.
Provides a foundation for both the reactive client and server subpackages.
Provides a reactive 
WebClient
 that builds on top of the
 org.springframework.http.client.reactive reactive HTTP adapter layer.Core interfaces and classes for Spring's generic, reactive web support.
Server-side abstractions for WebSocket interactions.
Top-level SockJS types.
- 
Uses of NestedRuntimeException in org.springframework.aopSubclasses of NestedRuntimeException in org.springframework.aopModifier and TypeClassDescriptionclassException that gets thrown when an AOP invocation failed because of misconfiguration or unexpected runtime issues.
- 
Uses of NestedRuntimeException in org.springframework.aop.aspectj.annotationSubclasses of NestedRuntimeException in org.springframework.aop.aspectj.annotationModifier and TypeClassDescriptionclassExtension of AopConfigException thrown when trying to perform an advisor generation operation on a class that is not an AspectJ annotation-style aspect.
- 
Uses of NestedRuntimeException in org.springframework.aop.frameworkSubclasses of NestedRuntimeException in org.springframework.aop.frameworkModifier and TypeClassDescriptionclassException that gets thrown on illegal AOP configuration arguments.
- 
Uses of NestedRuntimeException in org.springframework.beansSubclasses of NestedRuntimeException in org.springframework.beansModifier and TypeClassDescriptionclassException thrown when instantiation of a bean failed.classAbstract superclass for all exceptions thrown in the beans package and subpackages.classException thrown when no suitable editor or converter can be found for a bean property.classThrown on an unrecoverable problem encountered in the beans packages or sub-packages, e.g.classException thrown when referring to an invalid bean property.classThrown when a bean property getter or setter method throws an exception, analogous to an InvocationTargetException.classException thrown on an attempt to get the value of a property that isn't readable, because there's no getter method.classException thrown on an attempt to set the value of a property that is not writable (typically because there is no setter method).classException thrown when navigation of a valid nested property path encounters a NullPointerException.classSuperclass for exceptions related to a property access, such as type mismatch or invocation target exception.classCombined exception, composed of individual PropertyAccessException instances.classException thrown on a type mismatch when trying to set a bean property.
- 
Uses of NestedRuntimeException in org.springframework.beans.factorySubclasses of NestedRuntimeException in org.springframework.beans.factoryModifier and TypeClassDescriptionclassException thrown when a BeanFactory encounters an error when attempting to create a bean from a bean definition.classException thrown in case of a bean being requested despite bean creation currently not being allowed (for example, during the shutdown phase of a bean factory).classException thrown in case of a reference to a bean that's currently in creation.classException thrown when a BeanFactory encounters an invalid bean definition: e.g.classException that indicates an expression evaluation attempt having failed.classException that a bean implementation is suggested to throw if its own factory-aware initialization code fails.classException thrown when a bean instance has been requested for a bean definition which has been marked as abstract.classException thrown when a bean is not a factory, but a user tries to get at the factory for the given bean name.classThrown when a bean doesn't match the expected type.classException thrown when the BeanFactory cannot load the specified class of a given bean.classException to be thrown from a FactoryBean'sgetObject()method if the bean is not fully initialized yet, for example because it is involved in a circular reference.classException thrown when aBeanFactoryis asked for a bean instance for which it cannot find a definition.classException thrown when aBeanFactoryis asked for a bean instance for which multiple matching candidates have been found when only one matching bean was expected.classException thrown when a bean depends on other beans or simple properties that were not specified in the bean factory definition, although dependency checking was enabled.
- 
Uses of NestedRuntimeException in org.springframework.beans.factory.parsingSubclasses of NestedRuntimeException in org.springframework.beans.factory.parsingModifier and TypeClassDescriptionclassException thrown when a bean definition reader encounters an error during the parsing process.
- 
Uses of NestedRuntimeException in org.springframework.beans.factory.supportSubclasses of NestedRuntimeException in org.springframework.beans.factory.supportModifier and TypeClassDescriptionclassSubclass ofBeanDefinitionStoreExceptionindicating an invalid override attempt: typically registering a new definition for the same bean name whileDefaultListableBeanFactory.isAllowBeanDefinitionOverriding()isfalse.classException thrown when the validation of a bean definition failed.classA subclass ofBeanCreationExceptionwhich indicates that the target scope is not active, e.g.
- 
Uses of NestedRuntimeException in org.springframework.beans.factory.xmlSubclasses of NestedRuntimeException in org.springframework.beans.factory.xmlModifier and TypeClassDescriptionclassXML-specific BeanDefinitionStoreException subclass that wraps aSAXException, typically aSAXParseExceptionwhich contains information about the error location.
- 
Uses of NestedRuntimeException in org.springframework.contextSubclasses of NestedRuntimeException in org.springframework.contextModifier and TypeClassDescriptionclassException thrown during application context initialization.
- 
Uses of NestedRuntimeException in org.springframework.core.annotationSubclasses of NestedRuntimeException in org.springframework.core.annotationModifier and TypeClassDescriptionclassThrown byAnnotationUtilsand synthesized annotations if an annotation is improperly configured.
- 
Uses of NestedRuntimeException in org.springframework.core.codecSubclasses of NestedRuntimeException in org.springframework.core.codecModifier and TypeClassDescriptionclassGeneral error that indicates a problem while encoding and decoding to and from an Object stream.classIndicates an issue with decoding the input stream with a focus on content related issues such as a parse failure.classIndicates an issue with encoding the input Object stream with a focus on not being able to encode Objects.
- 
Uses of NestedRuntimeException in org.springframework.core.convertSubclasses of NestedRuntimeException in org.springframework.core.convertModifier and TypeClassDescriptionclassBase class for exceptions thrown by the conversion system.classException to be thrown when an actual type conversion attempt fails.classException to be thrown when a suitable converter could not be found in a given conversion service.
- 
Uses of NestedRuntimeException in org.springframework.core.serializer.supportSubclasses of NestedRuntimeException in org.springframework.core.serializer.supportModifier and TypeClassDescriptionclassWrapper for the native IOException (or similar) when aSerializerorDeserializerfailed.
- 
Uses of NestedRuntimeException in org.springframework.daoSubclasses of NestedRuntimeException in org.springframework.daoModifier and TypeClassDescriptionclassException thrown on failure to acquire a lock during an update, for example during a "select for update" statement.classException thrown on failure to complete a transaction in serialized mode due to update conflicts.classException thrown when we couldn't cleanup after a data access operation, but the actual operation went OK.classException thrown on concurrency failure.classRoot of the hierarchy of data access exceptions discussed in Expert One-On-One J2EE Design and Development.classData access exception thrown when a resource fails completely: for example, if we can't connect to a database using JDBC.classException thrown when an attempt to insert or update data results in violation of an integrity constraint.classException thrown if certain expected data could not be retrieved, e.g.classGeneric exception thrown when the current process was a deadlock loser, and its transaction rolled back.classException thrown when an attempt to insert or update data results in violation of an primary key or unique constraint.classData access exception thrown when a result was expected to have at least one row (or element) but zero rows (or elements) were actually returned.classData access exception thrown when a result was not of the expected size, for example when expecting a single row but getting 0 or more than 1 rows.classData access exception thrown when something unintended appears to have happened with an update, but the transaction hasn't already been rolled back.classException thrown on incorrect usage of the API, such as failing to "compile" a query object that needed compilation before execution.classRoot for exceptions thrown when we use a data access resource incorrectly.classRoot of the hierarchy of data access exceptions that are considered non-transient - where a retry of the same operation would fail unless the cause of the Exception is corrected.classData access exception thrown when a resource fails completely and the failure is permanent.classException thrown on an optimistic locking violation.classException thrown when the underlying resource denied a permission to access a specific element, such as a specific database table.classException thrown on a pessimistic locking violation.classException to be thrown on a query timeout.classData access exception thrown when a previously failed operation might be able to succeed if the application performs some recovery steps and retries the entire transaction or in the case of a distributed transaction, the transaction branch.classRoot of the hierarchy of data access exceptions that are considered transient - where a previously failed operation might be able to succeed when the operation is retried without any intervention by application-level functionality.classData access exception thrown when a resource fails temporarily and the operation can be retried.classException thrown on mismatch between Java type and database type: for example on an attempt to set an object of the wrong type in an RDBMS column.classNormal superclass when we can't distinguish anything more specific than "something went wrong with the underlying resource": for example, an SQLException from JDBC we can't pinpoint more precisely.
- 
Uses of NestedRuntimeException in org.springframework.http.converterSubclasses of NestedRuntimeException in org.springframework.http.converterModifier and TypeClassDescriptionclassThrown byHttpMessageConverterimplementations when a conversion attempt fails.classThrown byHttpMessageConverterimplementations when theHttpMessageConverter.read(java.lang.Class<? extends T>, org.springframework.http.HttpInputMessage)method fails.classThrown byHttpMessageConverterimplementations when theHttpMessageConverter.write(T, org.springframework.http.MediaType, org.springframework.http.HttpOutputMessage)method fails.
- 
Uses of NestedRuntimeException in org.springframework.jdbcSubclasses of NestedRuntimeException in org.springframework.jdbcModifier and TypeClassDescriptionclassException thrown when SQL specified is invalid.classFatal exception thrown when we can't connect to an RDBMS using JDBC.classData access exception thrown when a result set did not have the correct column count, for example when expecting a single column but getting 0 or more than 1 columns.classException thrown when a ResultSet has been accessed in an invalid fashion.classException thrown when a JDBC update affects an unexpected number of rows.classException to be thrown when a LOB could not be retrieved.classException thrown when we're not ignoringSQLWarnings.classException thrown when we can't classify an SQLException into one of our generic data access exceptions.
- 
Uses of NestedRuntimeException in org.springframework.jdbc.datasource.initSubclasses of NestedRuntimeException in org.springframework.jdbc.datasource.initModifier and TypeClassDescriptionclassThrown byScriptUtilsif an SQL script cannot be read.classRoot of the hierarchy of data access exceptions that are related to processing of SQL scripts.classThrown byScriptUtilsif an SQL script cannot be properly parsed.classThrown byScriptUtilsif a statement in an SQL script failed when executing it against the target database.classThrown when we cannot determine anything more specific than "something went wrong while processing an SQL script": for example, aSQLExceptionfrom JDBC that we cannot pinpoint more precisely.
- 
Uses of NestedRuntimeException in org.springframework.jdbc.datasource.lookupSubclasses of NestedRuntimeException in org.springframework.jdbc.datasource.lookupModifier and TypeClassDescriptionclassException to be thrown by a DataSourceLookup implementation, indicating that the specified DataSource could not be obtained.
- 
Uses of NestedRuntimeException in org.springframework.jdbc.support.xmlSubclasses of NestedRuntimeException in org.springframework.jdbc.support.xmlModifier and TypeClassDescriptionclassException thrown when the underlying implementation does not support the requested feature of the API.
- 
Uses of NestedRuntimeException in org.springframework.jmsSubclasses of NestedRuntimeException in org.springframework.jmsModifier and TypeClassDescriptionclassRuntime exception mirroring the JMS IllegalStateException.classRuntime exception mirroring the JMS InvalidClientIDException.classRuntime exception mirroring the JMS InvalidDestinationException.classRuntime exception mirroring the JMS InvalidSelectorException.classBase class for exception thrown by the framework whenever it encounters a problem related to JMS.classRuntime exception mirroring the JMS JMSSecurityException.classRuntime exception mirroring the JMS MessageEOFException.classRuntime exception mirroring the JMS MessageFormatException.classRuntime exception mirroring the JMS MessageNotReadableException.classRuntime exception mirroring the JMS MessageNotWriteableException.classRuntime exception mirroring the JMS ResourceAllocationException.classRuntime exception mirroring the JMS TransactionInProgressException.classRuntime exception mirroring the JMS TransactionRolledBackException.classJmsException to be thrown when no other matching subclass found.
- 
Uses of NestedRuntimeException in org.springframework.jms.connectionSubclasses of NestedRuntimeException in org.springframework.jms.connectionModifier and TypeClassDescriptionclassException thrown when a synchronized local transaction failed to complete (after the main transaction has already completed).
- 
Uses of NestedRuntimeException in org.springframework.jms.listener.adapterSubclasses of NestedRuntimeException in org.springframework.jms.listener.adapterModifier and TypeClassDescriptionclassException to be thrown when the execution of a listener method failed.classException to be thrown when the reply of a message failed to be sent.
- 
Uses of NestedRuntimeException in org.springframework.jms.support.converterSubclasses of NestedRuntimeException in org.springframework.jms.support.converterModifier and TypeClassDescriptionclassThrown byMessageConverterimplementations when the conversion of an object to/from aMessagefails.
- 
Uses of NestedRuntimeException in org.springframework.jms.support.destinationSubclasses of NestedRuntimeException in org.springframework.jms.support.destinationModifier and TypeClassDescriptionclassThrown by a DestinationResolver when it cannot resolve a destination name.
- 
Uses of NestedRuntimeException in org.springframework.jmxSubclasses of NestedRuntimeException in org.springframework.jmxModifier and TypeClassDescriptionclassGeneral base exception to be thrown on JMX errors.classException thrown when we cannot locate an instance of anMBeanServer, or when more than one instance is found.
- 
Uses of NestedRuntimeException in org.springframework.jmx.accessSubclasses of NestedRuntimeException in org.springframework.jmx.accessModifier and TypeClassDescriptionclassThrown when an invocation on an MBean resource failed with an exception (either a reflection exception or an exception thrown by the target method itself).classThrown when an invocation failed because of an I/O problem on the MBeanServerConnection.classThrown if an exception is encountered when trying to retrieve MBean metadata.
- 
Uses of NestedRuntimeException in org.springframework.jmx.exportSubclasses of NestedRuntimeException in org.springframework.jmx.exportModifier and TypeClassDescriptionclassException thrown in case of failure when exporting an MBean.classException thrown when we are unable to register an MBean, for example because of a naming conflict.
- 
Uses of NestedRuntimeException in org.springframework.jmx.export.metadataSubclasses of NestedRuntimeException in org.springframework.jmx.export.metadataModifier and TypeClassDescriptionclassThrown by theJmxAttributeSourcewhen it encounters incorrect metadata on a managed resource or one of its methods.
- 
Uses of NestedRuntimeException in org.springframework.jmx.export.notificationSubclasses of NestedRuntimeException in org.springframework.jmx.export.notification
- 
Uses of NestedRuntimeException in org.springframework.jndiSubclasses of NestedRuntimeException in org.springframework.jndiModifier and TypeClassDescriptionclassRuntimeException to be thrown in case of JNDI lookup failures, in particular from code that does not declare JNDI's checkedNamingException: for example, from Spring'sJndiObjectTargetSource.
- 
Uses of NestedRuntimeException in org.springframework.mailSubclasses of NestedRuntimeException in org.springframework.mailModifier and TypeClassDescriptionclassException thrown on failed authentication.classBase class for all mail exceptions.classException thrown if illegal message properties are encountered.classException to be thrown by user code if a mail cannot be prepared properly, for example when a FreeMarker template cannot be rendered for the mail text.classException thrown when a mail sending error is encountered.
- 
Uses of NestedRuntimeException in org.springframework.messagingSubclasses of NestedRuntimeException in org.springframework.messagingModifier and TypeClassDescriptionclassException that indicates an error occurred during message delivery.classException that indicates an error occurred during message handling.classThe base exception for any failures related to messaging.
- 
Uses of NestedRuntimeException in org.springframework.messaging.converterSubclasses of NestedRuntimeException in org.springframework.messaging.converter
- 
Uses of NestedRuntimeException in org.springframework.messaging.coreSubclasses of NestedRuntimeException in org.springframework.messaging.coreModifier and TypeClassDescriptionclassThrown by aDestinationResolverwhen it cannot resolve a destination.
- 
Uses of NestedRuntimeException in org.springframework.messaging.handler.annotation.supportModifier and TypeClassDescriptionclassException to be thrown when a method argument fails validation perhaps as a result of@Validstyle validation, or perhaps because it is required.classException that indicates that a method argument has not the expected type.
- 
Uses of NestedRuntimeException in org.springframework.messaging.handler.invocationSubclasses of NestedRuntimeException in org.springframework.messaging.handler.invocationModifier and TypeClassDescriptionclassCommon exception resulting from the invocation ofHandlerMethodArgumentResolver.
- 
Uses of NestedRuntimeException in org.springframework.messaging.simp.annotation.support
- 
Uses of NestedRuntimeException in org.springframework.messaging.simp.stompSubclasses of NestedRuntimeException in org.springframework.messaging.simp.stompModifier and TypeClassDescriptionclassRaised after a failure to encode or decode a STOMP message.
- 
Uses of NestedRuntimeException in org.springframework.ormSubclasses of NestedRuntimeException in org.springframework.ormModifier and TypeClassDescriptionclassException thrown on an optimistic locking violation for a mapped object.classException thrown if a mapped object could not be retrieved via its identifier.
- 
Uses of NestedRuntimeException in org.springframework.orm.hibernate5Subclasses of NestedRuntimeException in org.springframework.orm.hibernate5Modifier and TypeClassDescriptionclassHibernate-specific subclass of UncategorizedDataAccessException, for JDBC exceptions that Hibernate wrapped.classHibernate-specific subclass of ObjectRetrievalFailureException.classHibernate-specific subclass of ObjectOptimisticLockingFailureException.classHibernate-specific subclass of InvalidDataAccessResourceUsageException, thrown on invalid HQL query syntax.classHibernate-specific subclass of UncategorizedDataAccessException, for Hibernate system errors that do not match any concreteorg.springframework.daoexceptions.
- 
Uses of NestedRuntimeException in org.springframework.orm.jpaSubclasses of NestedRuntimeException in org.springframework.orm.jpaModifier and TypeClassDescriptionclassJPA-specific subclass of ObjectRetrievalFailureException.classJPA-specific subclass of ObjectOptimisticLockingFailureException.classJPA-specific subclass of UncategorizedDataAccessException, for JPA system errors that do not match any concreteorg.springframework.daoexceptions.
- 
Uses of NestedRuntimeException in org.springframework.oxmSubclasses of NestedRuntimeException in org.springframework.oxmModifier and TypeClassDescriptionclassBase class for exception thrown when a marshalling or unmarshalling error occurs.classException thrown on marshalling failure.classException that indicates that the cause cannot be distinguished further.classException thrown on unmarshalling failure.classException thrown on marshalling validation failure.classRoot of the hierarchy of Object XML Mapping exceptions.
- 
Uses of NestedRuntimeException in org.springframework.r2dbcSubclasses of NestedRuntimeException in org.springframework.r2dbcModifier and TypeClassDescriptionclassException thrown when SQL specified is invalid.classException thrown when we can't classify aR2dbcExceptioninto one of our generic data access exceptions.
- 
Uses of NestedRuntimeException in org.springframework.r2dbc.connection.initSubclasses of NestedRuntimeException in org.springframework.r2dbc.connection.initModifier and TypeClassDescriptionclassThrown byScriptUtilsif an SQL script cannot be read.classRoot of the hierarchy of data access exceptions that are related to processing of SQL scripts.classThrown byScriptUtilsif an SQL script cannot be properly parsed.classThrown byScriptUtilsif a statement in an SQL script failed when executing it against the target database.classThrown when we cannot determine anything more specific than "something went wrong while processing an SQL script": for example, anR2dbcExceptionfrom R2DBC that we cannot pinpoint more precisely.
- 
Uses of NestedRuntimeException in org.springframework.r2dbc.connection.lookupSubclasses of NestedRuntimeException in org.springframework.r2dbc.connection.lookupModifier and TypeClassDescriptionclassException to be thrown by aConnectionFactoryLookupimplementation, indicating that the specifiedConnectionFactorycould not be obtained.
- 
Uses of NestedRuntimeException in org.springframework.r2dbc.core.bindingSubclasses of NestedRuntimeException in org.springframework.r2dbc.core.bindingModifier and TypeClassDescriptionstatic classException thrown whenBindMarkersFactoryResolvercannot resolve aBindMarkersFactory.
- 
Uses of NestedRuntimeException in org.springframework.schedulingSubclasses of NestedRuntimeException in org.springframework.schedulingModifier and TypeClassDescriptionclassGeneral exception to be thrown on scheduling failures, such as the scheduler already having shut down.
- 
Uses of NestedRuntimeException in org.springframework.scheduling.quartzSubclasses of NestedRuntimeException in org.springframework.scheduling.quartzModifier and TypeClassDescriptionclassUnchecked exception that wraps an exception thrown from a target method.
- 
Uses of NestedRuntimeException in org.springframework.scriptingSubclasses of NestedRuntimeException in org.springframework.scriptingModifier and TypeClassDescriptionclassException to be thrown on script compilation failure.
- 
Uses of NestedRuntimeException in org.springframework.scripting.bshSubclasses of NestedRuntimeException in org.springframework.scripting.bshModifier and TypeClassDescriptionstatic final classException to be thrown on script execution failure.
- 
Uses of NestedRuntimeException in org.springframework.transactionSubclasses of NestedRuntimeException in org.springframework.transactionModifier and TypeClassDescriptionclassException thrown when a transaction can't be created using an underlying transaction API such as JTA.classException that represents a transaction failure caused by a heuristic decision on the side of the transaction coordinator.classException thrown when the existence or non-existence of a transaction amounts to an illegal state according to the transaction propagation behavior that applies.classException that gets thrown when an invalid isolation level is specified, i.e.classException that gets thrown when an invalid timeout is specified, that is, the specified timeout valid is out of range or the transaction manager implementation doesn't support timeouts.classException thrown when attempting to work with a nested transaction but nested transactions are not supported by the underlying backend.classException thrown when an operation is attempted that relies on an existing transaction (such as setting rollback status) and there is no existing transaction.classSuperclass for all transaction exceptions.classException thrown when attempting to suspend an existing transaction but transaction suspension is not supported by the underlying backend.classException thrown when a general transaction system error is encountered, like on commit or rollback.classException to be thrown when a transaction has timed out.classSuperclass for exceptions caused by inappropriate usage of a Spring transaction API.classThrown when an attempt to commit a transaction resulted in an unexpected rollback.
- 
Uses of NestedRuntimeException in org.springframework.webSubclasses of NestedRuntimeException in org.springframework.webModifier and TypeClassDescriptionclassRuntimeExceptionthat implementsErrorResponseto expose an HTTP status, response headers, and a body formatted as an RFC 7808ProblemDetail.
- 
Uses of NestedRuntimeException in org.springframework.web.bind.supportSubclasses of NestedRuntimeException in org.springframework.web.bind.supportModifier and TypeClassDescriptionclassServerWebInputExceptionsubclass that indicates a data binding or validation failure.
- 
Uses of NestedRuntimeException in org.springframework.web.clientSubclasses of NestedRuntimeException in org.springframework.web.clientModifier and TypeClassDescriptionclassException thrown when an HTTP 4xx is received.static final classHttpClientErrorExceptionfor status HTTP 400 Bad Request.static final classHttpClientErrorExceptionfor status HTTP 409 Conflict.static final classHttpClientErrorExceptionfor status HTTP 403 Forbidden.static final classHttpClientErrorExceptionfor status HTTP 410 Gone.static final classHttpClientErrorExceptionfor status HTTP 405 Method Not Allowed.static final classHttpClientErrorExceptionfor status HTTP 406 Not Acceptable.static final classHttpClientErrorExceptionfor status HTTP 404 Not Found.static final classHttpClientErrorExceptionfor status HTTP 429 Too Many Requests.static final classHttpClientErrorExceptionfor status HTTP 401 Unauthorized.static final classHttpClientErrorExceptionfor status HTTP 422 Unprocessable Entity.static final classHttpClientErrorExceptionfor status HTTP 415 Unsupported Media Type.classException thrown when an HTTP 5xx is received.static final classHttpServerErrorExceptionfor status HTTP HTTP 502 Bad Gateway.static final classHttpServerErrorExceptionfor status HTTP 504 Gateway Timeout.static final classHttpServerErrorExceptionfor status HTTP 500 Internal Server Error.static final classHttpServerErrorExceptionfor status HTTP 501 Not Implemented.static final classHttpServerErrorExceptionfor status HTTP 503 Service Unavailable.classAbstract base class for exceptions based on anHttpStatusCode.classException thrown when an I/O error occurs.classBase class for exceptions thrown byRestTemplatein case a request fails because of a server error response, as determined viaResponseErrorHandler.hasError(ClientHttpResponse), failure to decode the response, or a low level I/O error.classCommon base class for exceptions that contain actual HTTP response data.classRaised when no suitableHttpMessageConvertercould be found to extract the response.classException thrown when an unknown (or custom) HTTP status code is received.
- 
Uses of NestedRuntimeException in org.springframework.web.method.annotationSubclasses of NestedRuntimeException in org.springframework.web.method.annotationModifier and TypeClassDescriptionclassA ConversionNotSupportedException raised while resolving a method argument.classA TypeMismatchException raised while resolving a controller method argument.
- 
Uses of NestedRuntimeException in org.springframework.web.multipartSubclasses of NestedRuntimeException in org.springframework.web.multipartModifier and TypeClassDescriptionclassMultipartException subclass thrown when an upload exceeds the maximum upload size allowed.classException thrown when multipart resolution fails.
- 
Uses of NestedRuntimeException in org.springframework.web.reactive.functionSubclasses of NestedRuntimeException in org.springframework.web.reactive.functionModifier and TypeClassDescriptionclassException thrown to indicate that aContent-Typeis not supported.
- 
Uses of NestedRuntimeException in org.springframework.web.reactive.function.clientSubclasses of NestedRuntimeException in org.springframework.web.reactive.function.clientModifier and TypeClassDescriptionclassException thrown when an unknown (or custom) HTTP status code is received.classAbstract base class for exception published byWebClientin case of errors.classExceptions that contain actual HTTP request data.classExceptions that contain actual HTTP response data.static classWebClientResponseExceptionfor status HTTP HTTP 502 Bad Gateway.static classWebClientResponseExceptionfor status HTTP 400 Bad Request.static classWebClientResponseExceptionfor status HTTP 409 Conflict.static classWebClientResponseExceptionfor status HTTP 403 Forbidden.static classWebClientResponseExceptionfor status HTTP 504 Gateway Timeout.static classWebClientResponseExceptionfor status HTTP 410 Gone.static classWebClientResponseExceptionfor status HTTP 500 Internal Server Error.static classWebClientResponseExceptionfor status HTTP 405 Method Not Allowed.static classWebClientResponseExceptionfor status HTTP 406 Not Acceptable.static classWebClientResponseExceptionfor status HTTP 404 Not Found.static classWebClientResponseExceptionfor status HTTP 501 Not Implemented.static classWebClientResponseExceptionfor status HTTP 503 Service Unavailable.static classWebClientResponseExceptionfor status HTTP 429 Too Many Requests.static classWebClientResponseExceptionfor status HTTP 401 Unauthorized.static classWebClientResponseExceptionfor status HTTP 422 Unprocessable Entity.static classWebClientResponseExceptionfor status HTTP 415 Unsupported Media Type.
- 
Uses of NestedRuntimeException in org.springframework.web.serverSubclasses of NestedRuntimeException in org.springframework.web.serverModifier and TypeClassDescriptionclassException for errors that fit response status 405 (method not allowed).classServerWebInputExceptionsubclass that indicates a missing request value such as a request header, cookie value, query parameter, etc.classException for errors that fit response status 406 (not acceptable).classSubclass ofErrorResponseExceptionthat accepts a "reason" and maps it to the "detail" property ofProblemDetail.classException for anHttpStatus.INTERNAL_SERVER_ERRORthat exposes extra information about a controller method that failed, or a controller method argument that could not be resolved.classException for errors that fit response status 400 (bad request) for use in Spring Web applications.classServerWebInputExceptionsubclass that indicates an unsatisfied parameter condition, as typically expressed using an@RequestMappingannotation at the@Controllertype level.classException for errors that fit response status 415 (unsupported media type).
- 
Uses of NestedRuntimeException in org.springframework.web.socket.serverSubclasses of NestedRuntimeException in org.springframework.web.socket.serverModifier and TypeClassDescriptionclassThrown when handshake processing failed to complete due to an internal, unrecoverable error.
- 
Uses of NestedRuntimeException in org.springframework.web.socket.sockjsSubclasses of NestedRuntimeException in org.springframework.web.socket.sockjsModifier and TypeClassDescriptionclassBase class for exceptions raised while processing SockJS HTTP requests.classAn exception thrown when a message frame was successfully received over an HTTP POST and parsed but one or more of the messages it contained could not be delivered to the WebSocketHandler either because the handler failed or because the connection got closed.classIndicates a serious failure that occurred in the SockJS implementation as opposed to in user code (e.g.