bad_query.hh
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __BAD_QUERY_EXCEPT__KK
  2. #define __BAD_QUERY_EXCEPT__KK
  3. #include <string>
  4. using namespace std;
  5. //: Exception thrown when a BadQuery is encountered
  6. struct BadQuery {
  7.   BadQuery(string er) : error(er) {}
  8.   string error; //: The error message
  9. };
  10. #endif