Lima-Loa

org.limaloa.mapping.object
Class InvalidNumericMappingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.limaloa.BaseUncheckedException
                  extended by org.limaloa.AdapterRuntimeException
                      extended by org.limaloa.mapping.object.UnsupportedObjectMappingException
                          extended by org.limaloa.mapping.object.InvalidNumericMappingException
All Implemented Interfaces:
java.io.Serializable

public class InvalidNumericMappingException
extends UnsupportedObjectMappingException

Signifies an invalid numeric mapping - i.e. an attempt to convert a number too large or too small to fit into the destination type, detected at runtime.

Author:
Chris Nappin
See Also:
Serialized Form

Constructor Summary
InvalidNumericMappingException(java.lang.String message)
          Create a new exception instance.
InvalidNumericMappingException(java.lang.String message, java.lang.Throwable ex)
          Create a new wrapped exception instance.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidNumericMappingException

public InvalidNumericMappingException(java.lang.String message)
Create a new exception instance.

Parameters:
message - The exception message

InvalidNumericMappingException

public InvalidNumericMappingException(java.lang.String message,
                                      java.lang.Throwable ex)
Create a new wrapped exception instance.

Parameters:
message - The exception message
ex - The exception to wrap

Lima-Loa