00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_REQUEST_TIMEOUT_EXCEPTION_HPP
00017 #define COH_REQUEST_TIMEOUT_EXCEPTION_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/io/pof/PortableException.hpp"
00024 
00025 COH_OPEN_NAMESPACE2(coherence,net)
00026 
00027 using coherence::io::pof::PofReader;
00028 using coherence::io::pof::PofWriter;
00029 using coherence::io::pof::PortableException;
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 class COH_EXPORT RequestTimeoutException
00039     : public throwable_spec<RequestTimeoutException,
00040         extends<PortableException> >
00041     {
00042     friend class factory<RequestTimeoutException>;
00043 
00044     
00045 
00046     protected:
00047 
00048 
00049 
00050 
00051 
00052 
00053         RequestTimeoutException(String::View vsMsg = String::NULL_STRING,
00054                 Exception::View vCause = NULL);
00055 
00056 
00057     
00058 
00059     public:
00060 
00061 
00062 
00063 
00064 
00065 
00066 
00067         virtual Object::Holder getPartialResult() const;
00068 
00069 
00070 
00071 
00072 
00073 
00074         virtual void setPartialResult(Object::Holder ohPartialResult);
00075 
00076 
00077     
00078 
00079     public:
00080 
00081 
00082 
00083         virtual void readExternal(PofReader::Handle hIn);
00084 
00085 
00086 
00087 
00088         virtual void writeExternal(PofWriter::Handle hOut) const;
00089 
00090 
00091     
00092 
00093     protected:
00094 
00095 
00096 
00097         MemberHolder<Object> m_ohPartialResult;
00098     };
00099 
00100 COH_CLOSE_NAMESPACE2
00101 
00102 #endif // COH_REQUEST_TIMEOUT_EXCEPTION_HPP