package com.tootsville.joshua.client.except;

public class ForbiddenException extends Exception {

	/**
	 * TODO: document this field (theys, Oct 7, 2009)
	 * 
	 * serialVersionUID (long)
	 */
	private static final long serialVersionUID = 7561078422133338284L;

	public ForbiddenException () {
		// do nothing
	}

	@Override
	public String getMessage () {
		return "You are not allowed to do that!";
	}

}
