bad_query.hh
上传用户:clovervx
上传日期:2010-03-30
资源大小:787k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual 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