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) 2004-2005 TONBELLER AG 008// Copyright (C) 2005-2007 Pentaho and others 009// All Rights Reserved. 010*/ 011package mondrian.olap; 012 013/** 014 * Abstract base class for exceptions that indicate some limit was exceeded. 015 */ 016public abstract class ResultLimitExceededException extends MondrianException { 017 018 /** 019 * Creates a ResultLimitExceededException. 020 * 021 * @param message Localized message 022 */ 023 public ResultLimitExceededException(String message) { 024 super(message); 025 } 026} 027 028// End ResultLimitExceededException.java