We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1eae74 commit 89c2c99Copy full SHA for 89c2c99
src/httpServer/SocketException.h
@@ -0,0 +1,30 @@
1
+/* http-cpp-server-base
2
+ * Base de um servidor http simples em c++ para escrever
3
+ * serviços para projetos de robótica.
4
+ * SocketException class
5
+ *
6
+ * @author : Rob Tougher (mail-to: rtougher@yahoo.com)
7
+ * @source : http://tldp.org/LDP/LG/issue74/tougher.html
8
+ * @date : 2002
9
+ */
10
+
11
+#ifndef SocketException_class
12
+#define SocketException_class
13
14
+#include <string>
15
16
+class SocketException
17
+{
18
+ public:
19
+ SocketException ( std::string s ) : m_s ( s ) {};
20
+ ~SocketException (){};
21
22
+ std::string description() { return m_s; }
23
24
+ private:
25
26
+ std::string m_s;
27
28
+};
29
30
+#endif
0 commit comments