KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > QueryCanceledException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/QueryCanceledException.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 was canceled by an end-user.
15  *
16  * <p>See also {@link mondrian.olap.QueryTimeoutException}, which indicates that
17  * a query was canceled automatically due to a timeout.
18  *
19  * @version $Id: //open/mondrian/src/main/mondrian/olap/QueryCanceledException.java#2 $
20  */

21 public class QueryCanceledException extends ResultLimitExceededException {
22     /**
23      * Creates a QueryCanceledException.
24      *
25      * @param message Localized error message
26      */

27     public QueryCanceledException(String JavaDoc message) {
28         super(message);
29     }
30 }
31
32 // End QueryCanceledException.java
33
Popular Tags