Class PropertyBatchUpdateException

All Implemented Interfaces:
Serializable

public class PropertyBatchUpdateException extends BeansException
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 Details

    • PropertyBatchUpdateException

      public PropertyBatchUpdateException(PropertyAccessException[] propertyAccessExceptions)
      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

      public final PropertyAccessException[] getPropertyAccessExceptions()
      Return an array of the propertyAccessExceptions stored in this object.

      Will return the empty array (not null) if there were no errors.

    • getPropertyAccessException

      @Nullable public PropertyAccessException getPropertyAccessException(String propertyName)
      Return the exception for this field, or null if there isn't any.
    • getMessage

      public String getMessage()
      Description copied from class: NestedRuntimeException
      Return the detail message, including the message from the nested exception if there is one.
      Overrides:
      getMessage in class NestedRuntimeException
    • toString

      public String toString()
      Overrides:
      toString in class Throwable
    • printStackTrace

      public void printStackTrace(PrintStream ps)
      Overrides:
      printStackTrace in class Throwable
    • printStackTrace

      public void printStackTrace(PrintWriter pw)
      Overrides:
      printStackTrace in class Throwable
    • contains

      public boolean contains(@Nullable Class<?> exType)
      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 class NestedRuntimeException
      Parameters:
      exType - the exception type to look for
      Returns:
      whether there is a nested exception of the specified type