KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > ConfigurationException


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: TransactionException.java,v 1.2 2002/12/29 11:15:55 per_nyfelt Exp $
8

9 package org.ozoneDB.core;
10
11 public class ConfigurationException extends RuntimeException JavaDoc {
12     
13     public ConfigurationException() {
14     }
15     
16     public ConfigurationException(String JavaDoc message) {
17         super(message);
18     }
19     
20     public ConfigurationException(Throwable JavaDoc cause) {
21         super(cause);
22     }
23     
24     public ConfigurationException(String JavaDoc message, Throwable JavaDoc cause) {
25         super(message, cause);
26     }
27     
28 }
29
Popular Tags