Class ValueConversionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ValueConversionException
    extends PropException
    Exception thrown when a Value in a VirtualSpace Field property runs into a conversion problem, e.g. when retrieving a Date value to a Binary value, or when no available Value processor is present.
    Author:
    Christopher Mindus
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      ConstructorDescription
      ValueConversionException​(GProp<?> property, java.lang.String message)
      Creates a property exception with a message.
      ValueConversionException​(GProp<?> property, java.lang.String message, java.lang.Throwable cause)
      Creates a property exception with a message and an exception cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

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

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

      • ValueConversionException

        public ValueConversionException​(GProp<?> property,
                                        java.lang.String message)
        Creates a property exception with a message.
        Parameters:
        message - The detail message.
        Throws:
        java.lang.NullPointerException - If property parameter is null.
      • ValueConversionException

        public ValueConversionException​(GProp<?> property,
                                        java.lang.String message,
                                        java.lang.Throwable cause)
        Creates a property exception with a message and an exception cause.
        Parameters:
        property - The originator property.
        message - The detail message.
        cause - The real causing exception, null for none.
        Throws:
        java.lang.NullPointerException - If property parameter is null.