NetSocket++  0.1
A library designed to simplify working with UNIX sockets in C++, written in OOP methodology.
 All Classes Namespaces Files Functions Variables
SocketException.h
Go to the documentation of this file.
1 #ifndef _SOCKETEXCEPTION_H
2 #define _SOCKETEXCEPTION_H
3 
4 
5 
6 
7 
8 #include <exception>
9 #include <string>
12 namespace NetSocketPP {
15 class SocketException: public std::exception {
16 private:
17  std::string _msg;
18 public:
19  SocketException(std::string msg);
20 
21  ~SocketException() throw();
22  const char* what() const throw();
23 
24 };
25 }
26 #endif