package com.tootsville.joshua.client.except;

public class NotFoundException extends Exception {

	/**
	 * TODO: document this field (theys, Oct 2, 2009)
	 * 
	 * serialVersionUID (long)
	 */
	private static final long serialVersionUID = 3988772084813576149L;

	String message = "That doesn't exist.";

	public NotFoundException () {
		// no code
	}

	public NotFoundException (final String param) {
		message = "No users found for " + param + ".";
	}

	@Override
	public String getMessage () {
		return message;
	}

}
