1 /** 2 * $RCSfile: NotFoundException.java,v $ 3 * $Revision: 1.2 $ 4 * $Date: 2004/10/21 07:28:12 $ 5 * 6 * Copyright (C) 2004 Jive Software. All rights reserved. 7 * 8 * This software is published under the terms of the GNU Public License (GPL), 9 * a copy of which is included in this distribution. 10 */ 11 12 package org.jivesoftware.util; 13 14 /** 15 * <p>Flags an exception when something requested is not found.</p> 16 * <p>Use this class when it's not worth creating a unique xNotFoundException class, or 17 * where the context of the call makes it obvious what type of object was not found.</p> 18 * 19 * @author Iain Shigeoka 20 */ 21 public class NotFoundException extends Exception { 22 23 public NotFoundException() { 24 } 25 26 public NotFoundException(String message) { 27 super(message); 28 } 29 } 30