KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > storage > classicStore > ClassicStoreException


1 /*
2  * Copyright 1997-@year@ by SMB GmbH. All rights reserved.
3  *
4  * You can redistribute this software and/or modify it under the terms of
5  * the Ozone Core License version 1 published by ozone-db.org.
6  *
7  * $Id$
8  * Purpose:
9  */

10
11 package org.ozoneDB.core.storage.classicStore;
12
13 import org.ozoneDB.OzoneInternalException;
14
15
16 /**
17  * @author Gerd Mueller
18  */

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