KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > ResourceLimitExceededException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/ResourceLimitExceededException.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  *
15  * @version $Id: //open/mondrian/src/main/mondrian/olap/ResourceLimitExceededException.java#2 $
16  */

17 public class ResourceLimitExceededException
18     extends ResultLimitExceededException
19 {
20     /**
21      * Creates a ResourceLimitExceededException
22      *
23      * @param message Localized message
24      */

25     public ResourceLimitExceededException(String JavaDoc message) {
26         super(message);
27     }
28 }
29
30 // End ResourceLimitExceededException.java
31
Popular Tags