001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/ResultLimitExceededException.java#2 $
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) 2004-2005 TONBELLER AG
007    // Copyright (C) 2005-2007 Julian Hyde and others
008    // All Rights Reserved.
009    // You must accept the terms of that agreement to use this software.
010    */
011    package mondrian.olap;
012    
013    /**
014     * Abstract base class for exceptions that indicate some limit was exceeded.
015     *
016     * @version $Id: //open/mondrian/src/main/mondrian/olap/ResultLimitExceededException.java#2 $
017     */
018    public abstract class ResultLimitExceededException extends MondrianException {
019    
020        /**
021         * Creates a ResultLimitExceededException.
022         *
023         * @param message Localized message
024         */
025        public ResultLimitExceededException(String message) {
026            super(message);
027        }
028    }
029    
030    // End ResultLimitExceededException.java