BMA Server Framework
/home/barant/Development/BMA/server_core/ServerCore/BMAException.h
1 #ifndef __BMAException_h__
2 #define __BMAException_h__
3 
4 #include "includes"
5 
6 class BMAException {
7 
8  public:
9  BMAException(std::string text, std::string file = __FILE__, int line = __LINE__, int errorNumber = -1);
10  ~BMAException();
11 
12  std::string className;
13  std::string file;
14  int line;
15  std::string text;
16  int errorNumber;
17 
18 };
19 
20 #endif
Definition: BMAException.h:6