1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/MemoryLimitExceededException.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 // All Rights Reserved. 8 // You must accept the terms of that agreement to use this software. 9 */ 10 package mondrian.olap; 11 12 /** 13 * Exception which indicates some resource limit was exceeded. 14 * When a client receives a <code>MemoryLimitExceededException</code> the state 15 * of the objects associated with the query execution can NOT be 16 * counted on being correct - specifically data structures could be 17 * in an inconsistent state or missing entirely. No attempt should be 18 * make to access or use the result objects. 19 * 20 * @version $Id: //open/mondrian/src/main/mondrian/olap/MemoryLimitExceededException.java#2 $ 21 */ 22 public class MemoryLimitExceededException 23 extends ResultLimitExceededException { 24 25 public MemoryLimitExceededException(String message) { 26 super(message); 27 } 28 } 29 30 // End MemoryLimitExceededException.java 31