KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > MethodNotFoundException


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: MethodNotFoundException.java,v 1.1 2002/09/11 23:11:20 mediumnet Exp $
8

9 package org.ozoneDB;
10
11
12 /**
13  * This error is thrown, if the RMI system is unable to find or unable to
14  * invoke a given method.
15  *
16  *
17  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
18  * @version $Revision: 1.1 $Date: 2002/09/11 23:11:20 $
19  */

20 public class MethodNotFoundException extends Error JavaDoc {
21     
22     
23     public MethodNotFoundException() {
24         super();
25     }
26     
27     
28     public MethodNotFoundException( String JavaDoc s ) {
29         super( s );
30     }
31 }
32
Popular Tags