org.beanfabrics.model
Class ConversionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.beanfabrics.model.ConversionException
All Implemented Interfaces:
java.io.Serializable

public class ConversionException
extends java.lang.RuntimeException

The ConversionException is thrown to indicate that a PresentationModel has attempted to convert a string value to another type, but that the string does not have the appropriate format.

See Also:
Serialized Form

Constructor Summary
ConversionException()
          Constructs a ConversionException.
ConversionException(java.lang.String message)
          Constructs a ConversionException with the given message.
ConversionException(java.lang.String message, java.lang.Throwable cause)
          Constructs a ConversionException with the given message and cause.
ConversionException(java.lang.Throwable cause)
          Constructs a ConversionException with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

ConversionException

public ConversionException()
Constructs a ConversionException.


ConversionException

public ConversionException(java.lang.String message)
Constructs a ConversionException with the given message.

Parameters:
message -

ConversionException

public ConversionException(java.lang.Throwable cause)
Constructs a ConversionException with the given cause.

Parameters:
cause -

ConversionException

public ConversionException(java.lang.String message,
                           java.lang.Throwable cause)
Constructs a ConversionException with the given message and cause.

Parameters:
message -
cause -