public class

PropertyEditorException

extends IllegalArgumentException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.IllegalArgumentException
           ↳ webwork.util.editor.PropertyEditorException

Class Overview

This exception can be thrown by property editors instead of IllegalArgumentException ActionSupport will use the bundleKey to look up a localized error message. The message will then be formatted with the propertyValues. If no default message is supplied then one is constructed here. The default message is used to be backwards compatible so that people who have created their own ActionSupport classes and do not want to use the new localization features will not have to make changes to their code.

Summary

Public Constructors
PropertyEditorException(String bundleKey, Object oneValue)
PropertyEditorException(String bundleKey, Object oneValue, String defaultMessage)
PropertyEditorException(String bundleKey, Object[] propertyValues, String defaultMessage)
Public Methods
String getBundleKey()
String getMessage()
Object[] getPropertyValues()
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public PropertyEditorException (String bundleKey, Object oneValue)

public PropertyEditorException (String bundleKey, Object oneValue, String defaultMessage)

public PropertyEditorException (String bundleKey, Object[] propertyValues, String defaultMessage)

Public Methods

public String getBundleKey ()

public String getMessage ()

public Object[] getPropertyValues ()