01: /**
02: * $RCSfile$
03: * $Revision: 42 $
04: * $Date: 2004-10-21 00:28:12 -0700 (Thu, 21 Oct 2004) $
05: *
06: * Copyright (C) 2004 Jive Software. All rights reserved.
07: *
08: * This software is published under the terms of the GNU Public License (GPL),
09: * a copy of which is included in this distribution.
10: */package org.jivesoftware.util;
11:
12: /**
13: * <p>Flags an exception when something requested is not found.</p>
14: * <p>Use this class when it's not worth creating a unique xNotFoundException class, or
15: * where the context of the call makes it obvious what type of object was not found.</p>
16: *
17: * @author Iain Shigeoka
18: */
19: public class NotFoundException extends Exception {
20:
21: public NotFoundException() {
22: }
23:
24: public NotFoundException(String message) {
25: super(message);
26: }
27: }
|