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