KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > OzoneInternalException


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

9 package org.ozoneDB;
10
11 /**
12  * This exception signals an internal server exception.
13  *
14  *
15  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
16  * @author <a HREF="http://www.medium.net/">Medium.net</a>
17  * @author Per Nyfelt
18  * @version $Revision: 1.2 $Date: 2002/10/13 11:18:07 $
19  */

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