1 #ifndef _WX_DATABASE_EXCEPTION_H_ 2 #define _WX_DATABASE_EXCEPTION_H_ 6 #if wxUSE_DATABASE_EXCEPTIONS 8 class wxDatabaseException
11 wxDatabaseException(
int nCode,
const wxString& strError)
14 m_strErrorMessage = strError;
17 const wxString& GetErrorMessage()
const {
return m_strErrorMessage; }
18 const int GetErrorCode()
const {
return m_nErrorCode; }
22 wxString m_strErrorMessage;
26 #endif//wxUSE_DATABASE_EXCEPTIONS 28 #endif//_WX_DATABASE_EXCEPTION_H_