Skip to content
Snippets Groups Projects
Commit fe9a2a5a authored by Roberto Borghes's avatar Roberto Borghes
Browse files

Delete SocketException.h

parent ac35d962
No related branches found
No related tags found
No related merge requests found
// SocketException class
#ifndef SocketException_class
#define SocketException_class
#include <string>
class SocketException
{
public:
SocketException ( std::string s ) : m_s ( s ) {};
~SocketException (){};
std::string description() { return m_s; }
private:
std::string m_s;
};
#endif
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment