00001 #ifndef _SOCKETEXCEPTION_H 00002 #define _SOCKETEXCEPTION_H 00003 00004 #include "Exception.h" 00005 00006 00007 class SocketException : public Exception 00008 { 00009 public: 00010 SocketException(); 00011 ~SocketException(); 00012 00013 private: 00014 SocketException(const SocketException& ) {} // copy constructor 00015 SocketException& operator=(const SocketException& ) { return *this; } // assignment operator 00016 00017 }; 00018 00019 00020 00021 00022 #endif // _SOCKETEXCEPTION_H
|
|