Class PropertyEditorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PropertyEditorException
    extends java.lang.RuntimeException
    An exception for property editor conversion problems.
    Version:
    $Rev: 6680 $
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      PropertyEditorException()
      Default constructor for a PropertyException.
      PropertyEditorException​(java.lang.String message)
      A PropertyEditorException with just an error message.
      PropertyEditorException​(java.lang.String message, java.lang.Throwable cause)
      An exception with both a message and an internal exception.
      PropertyEditorException​(java.lang.Throwable cause)
      PropertyEditorException with a wrappered inner exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PropertyEditorException

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

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

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

        public PropertyEditorException​(java.lang.String message,
                                       java.lang.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.