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