01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.bridge;
11:
12: /**
13: * This exception gets thrown when an object is not found in the bridge.
14: * @author Michiel Meeuwissen
15: * @version $Id: NotFoundException.java,v 1.4 2003/08/29 09:36:50 pierre Exp $
16: */
17: public class NotFoundException extends BridgeException {
18:
19: //javadoc is inherited
20: public NotFoundException() {
21: super ();
22: }
23:
24: //javadoc is inherited
25: public NotFoundException(String message) {
26: super (message);
27: }
28:
29: //javadoc is inherited
30: public NotFoundException(Throwable cause) {
31: super (cause);
32: }
33:
34: //javadoc is inherited
35: public NotFoundException(String message, Throwable cause) {
36: super(message, cause);
37: }
38:
39: }
|