/**
 * WRITEME twheys@gmail.com
 */
package com.tootsville.tootsbook.client.exception;

/**
 * WRITEME: Document this type. twheys@gmail.com Jan 19, 2010
 * 
 * @author <a href="mailto:twheys@gmail.com@resinteractive.com">Tim
 *         Heys</a>
 */
public class InvalidCredentialsException extends TootBookException {

	/**
	 * WRITEME: Document this brpocock@star-hope.org
	 */
	private static final long serialVersionUID = -8805642222446836289L;

	/**
	 * WRITEME twheys@gmail.com
	 */
	public InvalidCredentialsException () {
		super ();
	}

	/**
	 * @param newMessage WRITEME twheys@gmail.com
	 */
	public InvalidCredentialsException (final String newMessage) {
		super (newMessage);
	}

}
