Class ConversionException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MissingTypeException, NoAvailableConverterException, TypeMismathException

public class ConversionException extends IllegalArgumentException
This exception may be thrown by PropertyConverters, when an attempted conversion fails.
Version:
$Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/util/convert/ConversionException.java#1 $
Author:
Harald Kuhr, last modified by $Author: haku $
See Also:
  • Constructor Details

    • ConversionException

      public ConversionException(String pMessage)
      Creates a ConversionException with the given error message.
      Parameters:
      pMessage - the error message
    • ConversionException

      public ConversionException(Throwable pCause)
      Creates a ConversionException with the given cause.
      Parameters:
      pCause - The Throwable that caused this exception
    • ConversionException

      public ConversionException(String pMessage, Throwable pCause)
      Creates a ConversionException with the given message and cause.
      Parameters:
      pMessage - the error message
      pCause - The Throwable that caused this exception