1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/ResultLimitExceededException.java#2 $ 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) 2004-2005 TONBELLER AG 7 // Copyright (C) 2005-2007 Julian Hyde and others 8 // All Rights Reserved. 9 // You must accept the terms of that agreement to use this software. 10 */ 11 package mondrian.olap; 12 13 /** 14 * Abstract base class for exceptions that indicate some limit was exceeded. 15 * 16 * @version $Id: //open/mondrian/src/main/mondrian/olap/ResultLimitExceededException.java#2 $ 17 */ 18 public abstract class ResultLimitExceededException extends MondrianException { 19 20 /** 21 * Creates a ResultLimitExceededException. 22 * 23 * @param message Localized message 24 */ 25 public ResultLimitExceededException(String message) { 26 super(message); 27 } 28 } 29 30 // End ResultLimitExceededException.java 31