XQuilla/include/xqilla/exceptions/QueryInterruptedException.hpp
2020-02-17 22:05:20 +01:00

39 lines
1,005 B
C++

/*
* 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: QueryInterruptedException.hpp,v 1.2 2006/11/01 16:37:12 jpcs Exp $
*/
/*
QueryInterruptedException
*/
#ifndef _QUERYINTERRUPTEDEXCEPTION_HPP
#define _QUERYINTERRUPTEDEXCEPTION_HPP
#include <xqilla/framework/XQillaExport.hpp>
#include <xqilla/exceptions/XQException.hpp>
#include <xqilla/utils/XStr.hpp>
/** exception class for interrupted queries */
class XQILLA_API QueryInterruptedException : public XQException
{
public:
QueryInterruptedException(const XMLCh *functionName, const XMLCh *reason, const LocationInfo *info, const char *file, int line)
: XQException(X("QueryInterruptedException"), functionName, reason, info, file, line) {};
};
#endif // _QUERYINTERRUPTEDEXCEPTION_HPP