KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > QueryTimeoutException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/QueryTimeoutException.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 // Copyright (C) 2005-2007 Julian Hyde and others
8 // All Rights Reserved.
9 // You must accept the terms of that agreement to use this software.
10 */

11 package mondrian.olap;
12
13 /**
14  * Exception which indicates that a query executed for longer than its allowed
15  * time and was automatically canceled.
16  *
17  * @version $Id: //open/mondrian/src/main/mondrian/olap/QueryTimeoutException.java#2 $
18  */

19 public class QueryTimeoutException extends ResultLimitExceededException {
20     /**
21      * Creates a QueryTimeoutException.
22      *
23      * @param message Localized error message
24      */

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