001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/MemoryLimitExceededException.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    // All Rights Reserved.
008    // You must accept the terms of that agreement to use this software.
009    */
010    package mondrian.olap;
011    
012    /**
013     * Exception which indicates some resource limit was exceeded.
014     * When a client receives a <code>MemoryLimitExceededException</code> the state
015     * of the objects associated with the query execution can NOT be
016     * counted on being correct - specifically data structures could be
017     * in an inconsistent state or missing entirely. No attempt should be
018     * make to access or use the result objects.
019     *
020     * @version $Id: //open/mondrian/src/main/mondrian/olap/MemoryLimitExceededException.java#2 $
021     */
022    public class MemoryLimitExceededException
023            extends ResultLimitExceededException {
024    
025        public MemoryLimitExceededException(String message) {
026            super(message);
027        }
028    }
029    
030    // End MemoryLimitExceededException.java