/* * Copyright (c) 2001-2006 * DecisionSoft Limited. All rights reserved. * Copyright (c) 2004-2006 * Progress Software Corporation. All rights reserved. * Copyright (c) 2004-2006 * Oracle. All rights reserved. * * See the file LICENSE for redistribution information. * * $Id: QueryTimeoutException.hpp,v 1.2 2006/11/01 16:37:12 jpcs Exp $ */ /* QueryTimeoutException */ #ifndef _QUERYTIMEOUTEXCEPTION_HPP #define _QUERYTIMEOUTEXCEPTION_HPP #include #include #include /** exception class for query timeouts */ class XQILLA_API QueryTimeoutException : public XQException { public: QueryTimeoutException(const XMLCh *functionName, const XMLCh *reason, const LocationInfo *info, const char *file, int line) : XQException(X("QueryTimeoutException"), functionName, reason, info, file, line) {}; }; #endif // _QUERYTIMEOUTEXCEPTION_HPP