00001 00008 #include "Error.h" 00009 00010 #include <wx/wx.h> 00011 00012 //---------------------------------------------------------- 00013 void ErrorAndExit(const char *msg, int exitCode) 00014 { 00015 ErrorMessage(msg); 00016 exit(exitCode); 00017 } 00018 00019 //---------------------------------------------------------- 00020 void ErrorMessage(const char *msg) 00021 { 00022 ErrorMessage("ERROR", msg); 00023 } 00024 00025 //---------------------------------------------------------- 00026 void ErrorMessage(const char *title, const char *msg) 00027 { 00028 wxMessageBox(msg, title, wxICON_ERROR | wxOK); 00029 }