KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > storage > StorageConfigurationException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.storage;
11
12 /**
13  * This exception gets thrown when an error occurred in the configuration of a StorageFactory or a
14  * storage manager.
15  * This can occur when configuration files are inaccesible, a wrong file format is used, or attributes
16  * are missing.
17  * @since MMBase-1.7
18  * @author Pierre van Rooden
19  * @version $Id: StorageConfigurationException.java,v 1.3 2003/11/18 14:58:33 michiel Exp $
20  */

21 public class StorageConfigurationException extends StorageException {
22
23     //javadoc is inherited
24
public StorageConfigurationException() {
25         super();
26     }
27
28     //javadoc is inherited
29
public StorageConfigurationException(String JavaDoc message) {
30         super(message);
31     }
32
33     //javadoc is inherited
34
public StorageConfigurationException(Throwable JavaDoc cause) {
35         super(cause.getMessage(), cause);
36     }
37
38     //javadoc is inherited
39
public StorageConfigurationException(String JavaDoc message, Throwable JavaDoc cause) {
40         super(message,cause);
41     }
42
43 }
44
Free Books   Free Magazines  
Popular Tags