Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47891-01

coherence/io/pof/PortableException.hpp

00001 /*
00002 * PortableException.hpp
00003 *
00004 * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
00005 *
00006 * Oracle is a registered trademarks of Oracle Corporation and/or its
00007 * affiliates.
00008 *
00009 * This software is the confidential and proprietary information of Oracle
00010 * Corporation. You shall not disclose such confidential and proprietary
00011 * information and shall use it only in accordance with the terms of the
00012 * license agreement you entered into with Oracle.
00013 *
00014 * This notice may not be removed or altered.
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 * A PortableException is an exception that allows information about a remote
00030 * exception or error to be serialized and deserialized to/from a POF stream.
00031 *
00032 * @author jh,mf  2008.01.23
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     // ----- constructors ---------------------------------------------------
00042 
00043     protected:
00044         /**
00045         * Construct a PortableException from a Throwable object and an
00046         * additional description.
00047         *
00048         * @param vsMessage  the additional description
00049         * @param ve         the cause exception
00050         */
00051         PortableException(String::View vsMessage = String::null_string,
00052                 Exception::View ve = NULL);
00053 
00054     protected:
00055         /**
00056         * Copy constructor.
00057         */
00058         PortableException(const PortableException&);
00059 
00060 
00061     // ----- PortableObject interface ---------------------------------------
00062 
00063     public:
00064         /**
00065         * {@inheritDoc}
00066         */
00067         virtual void readExternal(PofReader::Handle hIn);
00068 
00069         /**
00070         * {@inheritDoc}
00071         */
00072         virtual void writeExternal(PofWriter::Handle hOut) const;
00073 
00074 
00075     // ----- Exception interface --------------------------------------------
00076 
00077     public:
00078         /**
00079         * {@inheritDoc}
00080         */
00081         virtual String::View getName() const;
00082 
00083         /**
00084         * {@inheritDoc}
00085         */
00086         virtual ObjectArray::View getStackTrace() const;
00087 
00088 
00089     // ----- data members ---------------------------------------------------
00090 
00091     protected:
00092         /**
00093         * The exception's name.
00094         */
00095         mutable FinalView<String> f_vsName;
00096 
00097         /**
00098         * A raw representaion of the remote stack trace for this exception.
00099         */
00100         FinalView<ObjectArray> f_vaStackRemote;
00101     };
00102 
00103 COH_CLOSE_NAMESPACE3
00104 
00105 #endif // COH_PORTABLE_EXCEPTION_HPP
Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.