/**
 * THE InsufficientFundsException.java WRITEME...
 */
package com.tootsville.tootsbook.client.exception;

/**
 * WRITEME: Document this type. twheys@gmail.com Feb 26, 2010
 * 
 * @author <a href="mailto:twheys@gmail.com@resinteractive.com">Tim
 *         Heys</a>
 */
public class InsufficientFundsException extends TootBookException {
	/**
	 * WRITEME: Document this field. twheys@gmail.com Feb 26, 2010
	 */
	private static final long serialVersionUID = -4099815488213762626L;

	/**
	 * <pre>
	 * twheys@gmail.com Feb 26, 2010
	 * </pre>
	 * 
	 * A InsufficientFundsException WRITEME...
	 */
	public InsufficientFundsException () {
		super ();
	}

	/**
	 * <pre>
	 * twheys@gmail.com Feb 26, 2010
	 * </pre>
	 * 
	 * A InsufficientFundsException WRITEME...
	 * 
	 * @param text WRITEME twheys@gmail.com
	 */
	public InsufficientFundsException (final String text) {
		super (text);
	}
}
