00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef COH_PORTABLE_EXCEPTION_HPP
00017 #define COH_PORTABLE_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/PortableObject.hpp"
00024
00025 COH_OPEN_NAMESPACE3(coherence,io,pof)
00026
00027
00028
00029
00030
00031
00032
00033
00034 class COH_EXPORT PortableException
00035 : public throwable_spec<PortableException,
00036 extends<RuntimeException>,
00037 implements<PortableObject> >
00038 {
00039 friend class factory<PortableException>;
00040
00041
00042
00043 protected:
00044
00045
00046
00047
00048
00049
00050
00051 PortableException(String::View vsMessage = String::null_string,
00052 Exception::View ve = NULL);
00053
00054 protected:
00055
00056
00057
00058 PortableException(const PortableException&);
00059
00060
00061
00062
00063 public:
00064
00065
00066
00067 virtual void readExternal(PofReader::Handle hIn);
00068
00069
00070
00071
00072 virtual void writeExternal(PofWriter::Handle hOut) const;
00073
00074
00075
00076
00077 public:
00078
00079
00080
00081 virtual String::View getName() const;
00082
00083
00084
00085
00086 virtual ObjectArray::View getStackTrace() const;
00087
00088
00089
00090
00091 protected:
00092
00093
00094
00095 mutable FinalView<String> f_vsName;
00096
00097
00098
00099
00100 FinalView<ObjectArray> f_vaStackRemote;
00101 };
00102
00103 COH_CLOSE_NAMESPACE3
00104
00105 #endif // COH_PORTABLE_EXCEPTION_HPP