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