Subversion Repositories HomeAutomation

Rev

Rev 969 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 969 Rev 985
Line 22... Line 22...
22
#ifndef _SOCKETEXCEPTION_H
22
#ifndef _SOCKETEXCEPTION_H
23
#define _SOCKETEXCEPTION_H
23
#define _SOCKETEXCEPTION_H
24
 
24
 
25
#include "../exception.h"
25
#include "../exception.h"
26
 
26
 
27
class SocketException : public Exception
27
class SocketException : public Atom::Exception
28
{
28
{
29
public:
29
public:
30
    SocketException(string description) : Exception(description) {};
30
    SocketException(string description) : Exception(description) {};
31
};
31
};
32
 
32