summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/persistency/ClusterStorageException.java
blob: b51982cc2db3fb122ad7a8a7a67a694b25cedac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.c2kernel.persistency;

/**
 *
 * @version $Revision: 1.2 $ $Date: 2003/07/14 07:57:06 $
 * @author  $Author: abranson $
 */

public class ClusterStorageException extends Exception {
    public ClusterStorageException() {
        super();
    }
    public ClusterStorageException(String s) {
        super(s);
    }

}