Revision: | 1.1 |
Committed: | Mon Oct 31 22:10:36 2005 UTC (19 years, 6 months ago) by afaq |
Branch point for: | v00, MAIN |
Log Message: | Initial revision |
# | User | Rev | Content |
---|---|---|---|
1 | afaq | 1.1 | #ifndef _SocketException_hpp_included_ |
2 | #define _SocketException_hpp_included_ | ||
3 | #include <string> | ||
4 | class SocketException { | ||
5 | public: | ||
6 | SocketException(); | ||
7 | SocketException(std::string); | ||
8 | std::string report(void); | ||
9 | private: | ||
10 | std::string message; | ||
11 | |||
12 | }; | ||
13 | #endif |