Package org.springframework.beans
Class PropertyBatchUpdateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.PropertyBatchUpdateException
- All Implemented Interfaces:
Serializable
Combined exception, composed of individual PropertyAccessException instances.
An object of this class is created at the beginning of the binding
process, and errors added to it as necessary.
The binding process continues when it encounters application-level PropertyAccessExceptions, applying those changes that can be applied and storing rejected changes in an object of this class.
- Since:
- 18 April 2001
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionPropertyBatchUpdateException
(PropertyAccessException[] propertyAccessExceptions) Create a new PropertyBatchUpdateException. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type.final int
If this returns 0, no errors were encountered during binding.getPropertyAccessException
(String propertyName) Return the exception for this field, ornull
if there isn't any.final PropertyAccessException[]
Return an array of the propertyAccessExceptions stored in this object.void
void
toString()
Methods inherited from class org.springframework.core.NestedRuntimeException
getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace
-
Constructor Details
-
PropertyBatchUpdateException
Create a new PropertyBatchUpdateException.- Parameters:
propertyAccessExceptions
- the List of PropertyAccessExceptions
-
-
Method Details
-
getExceptionCount
public final int getExceptionCount()If this returns 0, no errors were encountered during binding. -
getPropertyAccessExceptions
Return an array of the propertyAccessExceptions stored in this object.Will return the empty array (not
null
) if there were no errors. -
getPropertyAccessException
Return the exception for this field, ornull
if there isn't any. -
getMessage
- Overrides:
getMessage
in classThrowable
-
toString
-
printStackTrace
- Overrides:
printStackTrace
in classThrowable
-
printStackTrace
- Overrides:
printStackTrace
in classThrowable
-
contains
Description copied from class:NestedRuntimeException
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type.- Overrides:
contains
in classNestedRuntimeException
- Parameters:
exType
- the exception type to look for- Returns:
- whether there is a nested exception of the specified type
-