00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include "a2dprec.h"
00013
00014 #ifdef __BORLANDC__
00015 #pragma hdrstop
00016 #endif
00017
00018 #ifndef WX_PRECOMP
00019 #include "wx/wx.h"
00020 #endif
00021
00022 #include "wx/gdsio/gdserr.h"
00023
00024 GDS_Error::GDS_Error( const wxString& message, const wxString& header )
00025 {
00026 m_message = message;
00027 m_header = header;
00028 }
00029
00030 GDS_Error::GDS_Error(const GDS_Error& other)
00031 {
00032 m_message = other.m_message;
00033 m_header = other.m_header;
00034 }
00035
00036 GDS_Error::~GDS_Error()
00037 {
00038 }
00039
00040
00041
00042