org.joda.money
Class CurrencyMismatchException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalArgumentException
                  extended by org.joda.money.CurrencyMismatchException
All Implemented Interfaces:
Serializable

public class CurrencyMismatchException
extends IllegalArgumentException

Exception thrown when a monetary operation fails due to mismatched currencies.

For example, this exception would be thrown when trying to add a monetary value in one currency to a monetary value in a different currency.

This exception makes no guarantees about immutability or thread-safety.

See Also:
Serialized Form

Constructor Summary
CurrencyMismatchException(CurrencyUnit firstCurrency, CurrencyUnit secondCurrency)
          Constructor.
 
Method Summary
 CurrencyUnit getFirstCurrency()
          Gets the first currency at fault.
 CurrencyUnit getSecondCurrency()
          Gets the second currency at fault.
 
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

CurrencyMismatchException

public CurrencyMismatchException(CurrencyUnit firstCurrency,
                                 CurrencyUnit secondCurrency)
Constructor.

Parameters:
firstCurrency - the first currency, may be null
Method Detail

getFirstCurrency

public CurrencyUnit getFirstCurrency()
Gets the first currency at fault.

Returns:
the currency at fault, may be null

getSecondCurrency

public CurrencyUnit getSecondCurrency()
Gets the second currency at fault.

Returns:
the currency at fault, may be null


Copyright © 2009-2013 Joda.org. All Rights Reserved.