KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > InvalidHierarchyException


1 /*
2 // This software is subject to the terms of the Common Public License
3 // Agreement, available at the following URL:
4 // http://www.opensource.org/licenses/cpl.html.
5 // Copyright (C) 2005-2007 Julian Hyde and others
6 // All Rights Reserved.
7 // You must accept the terms of that agreement to use this software.
8 */

9 package mondrian.olap;
10
11 /**
12  * Exception which indicates that a Cube is invalid
13  * because there is a hierarchy with no members.
14  *
15  * @version $Id: //open/mondrian/src/main/mondrian/olap/InvalidHierarchyException.java#2 $
16  */

17 public class InvalidHierarchyException extends MondrianException {
18     /**
19      * Creates a InvalidHierarchyException.
20      *
21      * @param message Localized error message
22      */

23     public InvalidHierarchyException(String JavaDoc message) {
24         super(message);
25     }
26 }
27
28 // End InvalidHierarchyException.java
29
Popular Tags