KickJava   Java API By Example, From Geeks To Geeks.

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


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 the storage is inaccessible, such as when files were moved, a database goes offline,
14  * or user rights on the storage were insufficient to allow access.
15  * @since MMBase-1.7
16  * @author Pierre van Rooden
17  * @version $Id: StorageInaccessibleException.java,v 1.3 2003/11/18 14:58:33 michiel Exp $
18  */

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