Class BeanPropertyException

  • All Implemented Interfaces:
    java.io.Serializable

    public class BeanPropertyException
    extends java.lang.RuntimeException
    This Runtime Exception is thrown when a Bean Property Type method attempts an invalid component property coercion. For example when the bean property type method Long test(); is applied to a component property "test" of type String.
    Author:
    $Id: d327e88aecae3542261018191731d784a0fa9cde $
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BeanPropertyException​(java.lang.String message)
      Create a Bean Property Exception with a message.
      BeanPropertyException​(java.lang.String message, java.lang.Throwable cause)
      Create a Bean Property Exception with a message and a nested cause.
    • 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

      • BeanPropertyException

        public BeanPropertyException​(java.lang.String message)
        Create a Bean Property Exception with a message.
        Parameters:
        message - The message for this exception.
      • BeanPropertyException

        public BeanPropertyException​(java.lang.String message,
                                     java.lang.Throwable cause)
        Create a Bean Property Exception with a message and a nested cause.
        Parameters:
        message - The message for this exception.
        cause - The causing exception.