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) 2006-2009 Pentaho and others
009// All Rights Reserved.
010*/
011package mondrian.olap;
012
013/**
014 * Exception which indicates some resource limit was exceeded.
015 * When a client receives a <code>MemoryLimitExceededException</code> the state
016 * of the objects associated with the query execution can NOT be
017 * counted on being correct - specifically data structures could be
018 * in an inconsistent state or missing entirely. No attempt should be
019 * make to access or use the result objects.
020 */
021public class MemoryLimitExceededException
022    extends ResultLimitExceededException
023{
024
025    public MemoryLimitExceededException(String message) {
026        super(message);
027    }
028}
029
030// End MemoryLimitExceededException.java