001 /*
002 // $Id: //open/mondrian-release/3.0/src/main/mondrian/olap/ResourceLimitExceededException.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 *
015 * @version $Id: //open/mondrian-release/3.0/src/main/mondrian/olap/ResourceLimitExceededException.java#2 $
016 */
017 public class ResourceLimitExceededException
018 extends ResultLimitExceededException
019 {
020 /**
021 * Creates a ResourceLimitExceededException
022 *
023 * @param message Localized message
024 */
025 public ResourceLimitExceededException(String message) {
026 super(message);
027 }
028 }
029
030 // End ResourceLimitExceededException.java