Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CASTOR_NET_NETEXCEPTION_H
00018 #define CASTOR_NET_NETEXCEPTION_H 1
00019
00020 #include "Exception.h"
00021
00022 namespace castor { namespace net {
00023
00024 class NetException : public Exception {
00025
00026 public:
00027
00028 NetException(const std::string what = "unknown net exception occured", ...) throw() {
00029 va_list params;
00030 va_start(params, what);
00031 setReason(what, params);
00032 va_end(params);
00033 }
00034 };
00035 } }
00036
00037 #endif
00038