Class InsufficientFundsException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byInsufficientFundsException
All Implemented Interfaces:
Serializable

public class InsufficientFundsException
extends Exception

Thrown when there is an attempt to spend money that is not there.

Version:
7
See Also:
Serialized Form

Constructor Summary
InsufficientFundsException()
          Construct an InsufficientFundsException with no description.
InsufficientFundsException(String msg)
          Construct an InsufficientFundsException with a String description.
 
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

InsufficientFundsException

public InsufficientFundsException()
Construct an InsufficientFundsException with no description.


InsufficientFundsException

public InsufficientFundsException(String msg)
Construct an InsufficientFundsException with a String description.

Parameters:
msg - a more specific description.