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