Class ValueConversionException

All Implemented Interfaces:
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:
  • Constructor Details

    • ValueConversionException

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

      public ValueConversionException(GProp<?> property, String message, 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:
      NullPointerException - If property parameter is null.