KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > UnexpectedException


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

9 package org.ozoneDB;
10
11
12 /**
13  * This Exception is thrown, if a method of a database object has thrown an
14  * exception that is not in its throws clause or to signal an general unexpected
15  * error condition.
16  *
17  *
18  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
19  * @version $Revision: 1.4 $Date: 2002/10/13 11:18:07 $
20  */

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