00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef COH_UNKNOWN_HOST_EXCEPTION_HPP
00017 #define COH_UNKNOWN_HOST_EXCEPTION_HPP
00018
00019 #include "coherence/lang.ns"
00020
00021 #include "coherence/io/IOException.hpp"
00022
00023 COH_OPEN_NAMESPACE2(coherence,net)
00024
00025 using coherence::io::IOException;
00026
00027
00028
00029
00030
00031
00032
00033 class COH_EXPORT UnknownHostException
00034 : public throwable_spec<UnknownHostException,
00035 extends<IOException> >
00036 {
00037 friend class factory<UnknownHostException>;
00038
00039
00040
00041 protected:
00042
00043
00044
00045
00046
00047
00048
00049
00050 UnknownHostException(String::View vsMsg = String::null_string,
00051 Exception::View vCause = NULL);
00052 };
00053
00054 COH_CLOSE_NAMESPACE2
00055
00056 #endif // COH_UNKNOWN_HOST_EXCEPTION_HPP