Version: 1.0.0
error_reporter.h
Go to the documentation of this file.
1 #ifndef _WX_DATABASE_ERROR_REPORTER_H_
2 #define _WX_DATABASE_ERROR_REPORTER_H_
3 
4 #include "wx/database/wxprec.h"
5 
7 {
8 public:
9  // ctor
11 
12  // dtor
13  virtual ~wxDatabaseErrorReporter();
14 
15  const wxString& GetErrorMessage();
16  int GetErrorCode();
17 
18  void ResetErrorCodes();
19 
20 protected:
21  void SetErrorMessage(const wxString& strErrorMessage);
22  void SetErrorCode(int nErrorCode);
23 
24  void ThrowDatabaseException();
25 
26 private:
29 };
30 
31 #endif//_WX_DATABASE_ERROR_REPORTER_H_
32 
#define WXDLLIMPEXP_DATABASE