Class PropertyEditorException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.xbean.propertyeditor.PropertyEditorException
All Implemented Interfaces:
Serializable

public class PropertyEditorException extends RuntimeException
An exception for property editor conversion problems.
Version:
$Rev: 6680 $
See Also:
  • Constructor Details

    • PropertyEditorException

      public PropertyEditorException()
      Default constructor for a PropertyException.
    • PropertyEditorException

      public PropertyEditorException(Throwable cause)
      PropertyEditorException with a wrappered inner exception.
      Parameters:
      cause - Original root cause of the PropertyEditorException.
    • PropertyEditorException

      public PropertyEditorException(String message)
      A PropertyEditorException with just an error message.
      Parameters:
      message - The text error message describing the condition.
    • PropertyEditorException

      public PropertyEditorException(String message, Throwable cause)
      An exception with both a message and an internal exception.
      Parameters:
      message - The test error message.
      cause - The root cause for the exception.