KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > ObjectNotFoundException


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: ObjectNotFoundException.java,v 1.2 2002/10/13 11:18:07 per_nyfelt Exp $
8

9 package org.ozoneDB;
10
11 /**
12  * This exception is thrown, if a database object, which is referenced
13  * by a proxy, cannot be found in the database.
14  *
15  *
16  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
17  * @version $Revision: 1.2 $Date: 2002/10/13 11:18:07 $
18  */

19 public class ObjectNotFoundException extends OzoneRemoteException {
20     
21     
22     public ObjectNotFoundException() {
23         super();
24     }
25     
26     
27     public ObjectNotFoundException( String JavaDoc message ) {
28         super( message );
29     }
30
31     public ObjectNotFoundException(String JavaDoc message, Throwable JavaDoc cause) {
32         super(message, cause);
33     }
34
35     public ObjectNotFoundException(Throwable JavaDoc cause) {
36         super(cause);
37     }
38 }
39
Popular Tags