001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/fun/MondrianEvaluationException.java#3 $
003    // This software is subject to the terms of the Common Public License
004    // Agreement, available at the following URL:
005    // http://www.opensource.org/licenses/cpl.html.
006    // Copyright (C) 2002-2002 Kana Software, Inc.
007    // Copyright (C) 2002-2005 Julian Hyde and others
008    // All Rights Reserved.
009    // You must accept the terms of that agreement to use this software.
010    //
011    // jhyde, 14 June, 2002
012    */
013    package mondrian.olap.fun;
014    
015    /**
016     * Thrown while evaluating a cell expression
017     */
018    public class MondrianEvaluationException extends RuntimeException {
019        public MondrianEvaluationException() {
020        }
021        public MondrianEvaluationException(String s) {
022            super(s);
023        }
024    }
025    
026    // End MondrianEvaluationException.java