01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: UnexpectedException.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB;
10:
11: /**
12: * This Exception is thrown, if a method of a database object has thrown an
13: * exception that is not in its throws clause or to signal an general unexpected
14: * error condition.
15: *
16: *
17: * @author <a href="http://www.softwarebuero.de/">SMB</a>
18: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
19: */
20: public class UnexpectedException extends RuntimeException {
21:
22: public UnexpectedException() {
23: }
24:
25: public UnexpectedException(String msg) {
26: super(msg);
27: }
28:
29: }
|