Class PropertySetterException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PropertySetterException
    extends java.lang.Exception
    Thrown when an error is encountered whilst attempting to set a property using the PropertySetter utility class.
    Since:
    1.1
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Throwable rootCause
      The root cause.
    • Constructor Summary

      Constructors 
      Constructor Description
      PropertySetterException​(java.lang.String msg)
      Construct the exception with the given message.
      PropertySetterException​(java.lang.Throwable rootCause)
      Construct the exception with the given root cause.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()
      Returns descriptive text on the cause of this exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, 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
    • Field Detail

      • rootCause

        protected java.lang.Throwable rootCause
        The root cause.
    • Constructor Detail

      • PropertySetterException

        public PropertySetterException​(java.lang.String msg)
        Construct the exception with the given message.
        Parameters:
        msg - The message
      • PropertySetterException

        public PropertySetterException​(java.lang.Throwable rootCause)
        Construct the exception with the given root cause.
        Parameters:
        rootCause - The root cause
    • Method Detail

      • getMessage

        public java.lang.String getMessage()
        Returns descriptive text on the cause of this exception.
        Overrides:
        getMessage in class java.lang.Throwable
        Returns:
        the descriptive text.