001 /*
002 // This software is subject to the terms of the Common Public License
003 // Agreement, available at the following URL:
004 // http://www.opensource.org/licenses/cpl.html.
005 // Copyright (C) 2005-2007 Julian Hyde and others
006 // All Rights Reserved.
007 // You must accept the terms of that agreement to use this software.
008 */
009 package mondrian.olap;
010
011 /**
012 * Exception which indicates that a Cube is invalid
013 * because there is a hierarchy with no members.
014 *
015 * @version $Id: //open/mondrian-release/3.0/src/main/mondrian/olap/InvalidHierarchyException.java#2 $
016 */
017 public class InvalidHierarchyException extends MondrianException {
018 /**
019 * Creates a InvalidHierarchyException.
020 *
021 * @param message Localized error message
022 */
023 public InvalidHierarchyException(String message) {
024 super(message);
025 }
026 }
027
028 // End InvalidHierarchyException.java