NetSocket++
0.1
A library designed to simplify working with UNIX sockets in C++, written in OOP methodology.
Main Page
Namespaces
Classes
Files
File List
File Members
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
Generated on Wed Feb 27 2013 00:04:34 for NetSocket++ by
1.8.3.1