001 /* 002 // $Id: //open/mondrian/src/main/mondrian/olap/QueryCanceledException.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 // Copyright (C) 2005-2007 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 that a query was canceled by an end-user. 015 * 016 * <p>See also {@link mondrian.olap.QueryTimeoutException}, which indicates that 017 * a query was canceled automatically due to a timeout. 018 * 019 * @version $Id: //open/mondrian/src/main/mondrian/olap/QueryCanceledException.java#2 $ 020 */ 021 public class QueryCanceledException extends ResultLimitExceededException { 022 /** 023 * Creates a QueryCanceledException. 024 * 025 * @param message Localized error message 026 */ 027 public QueryCanceledException(String message) { 028 super(message); 029 } 030 } 031 032 // End QueryCanceledException.java