001 /*
002 // $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/ResourceLimitExceededException.java#1 $
003 // This software is subject to the terms of the Eclipse Public License v1.0
004 // Agreement, available at the following URL:
005 // http://www.eclipse.org/legal/epl-v10.html.
006 // Copyright (C) 2004-2005 TONBELLER AG
007 // Copyright (C) 2006-2009 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 * Exception which indicates some resource limit was exceeded.
015 *
016 * @version $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/ResourceLimitExceededException.java#1 $
017 */
018 public class ResourceLimitExceededException
019 extends ResultLimitExceededException
020 {
021 /**
022 * Creates a ResourceLimitExceededException
023 *
024 * @param message Localized message
025 */
026 public ResourceLimitExceededException(String message) {
027 super(message);
028 }
029 }
030
031 // End ResourceLimitExceededException.java