00001
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "SocketException.hpp"
00030 #include "Debug.hpp"
00031 #include "Exception.hpp"
00032
00033 using namespace H;
00034 using namespace std;
00035
00037
00039
00041
00043
00047 SocketException::SocketException(std::string const & Message, ExceptionType Type) : Exception(Message, Type) {
00048 }
00049
00053 SocketException::SocketException(std::string const & Message, std::string const & File, std::string const & Function, int LineNumber, ExceptionType Type) : Exception(Message, File, Function, LineNumber, Type) {
00054 }
00055
00056
00060 SocketException::~SocketException() throw() {
00061 }
00062
00064
00066