1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/fun/MondrianEvaluationException.java#3 $ 3 // This software is subject to the terms of the Common Public License 4 // Agreement, available at the following URL: 5 // http://www.opensource.org/licenses/cpl.html. 6 // Copyright (C) 2002-2002 Kana Software, Inc. 7 // Copyright (C) 2002-2005 Julian Hyde and others 8 // All Rights Reserved. 9 // You must accept the terms of that agreement to use this software. 10 // 11 // jhyde, 14 June, 2002 12 */ 13 package mondrian.olap.fun; 14 15 /** 16 * Thrown while evaluating a cell expression 17 */ 18 public class MondrianEvaluationException extends RuntimeException { 19 public MondrianEvaluationException() { 20 } 21 public MondrianEvaluationException(String s) { 22 super(s); 23 } 24 } 25 26 // End MondrianEvaluationException.java 27