KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > NotFoundException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

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 JavaDoc message) {
26         super(message);
27     }
28
29     //javadoc is inherited
30
public NotFoundException(Throwable JavaDoc cause) {
31         super(cause);
32     }
33
34     //javadoc is inherited
35
public NotFoundException(String JavaDoc message, Throwable JavaDoc cause) {
36         super(message,cause);
37     }
38
39 }
40
Popular Tags