KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > remote > generator > NotInMMCIException


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
11 package org.mmbase.bridge.remote.generator;
12
13 /**
14  * @javadoc
15  * @author Kees Jongenburger <keesj@dds.nl>
16  * @version $Id: NotInMMCIException.java,v 1.3 2003/08/29 09:40:19 pierre Exp $
17  */

18 public class NotInMMCIException extends Exception JavaDoc {
19     
20     //javadoc is inherited
21
public NotInMMCIException() {
22         super();
23     }
24
25     //javadoc is inherited
26
public NotInMMCIException(String JavaDoc message) {
27         super(message);
28     }
29
30     //javadoc is inherited
31
public NotInMMCIException(Throwable JavaDoc cause) {
32         super(cause);
33     }
34
35     //javadoc is inherited
36
public NotInMMCIException(String JavaDoc message, Throwable JavaDoc cause) {
37         super(message, cause);
38     }
39
40 }
41
Popular Tags