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

E80355-01

coherence/io/UTFDataFormatException.hpp

00001 /*
00002 * UTFDataFormatException.hpp
00003 *
00004 * Copyright (c) 2000, 2017, 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_UTF_DATA_FORMAT_EXCEPTION_HPP
00017 #define COH_UTF_DATA_FORMAT_EXCEPTION_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/IOException.hpp"
00022 
00023 COH_OPEN_NAMESPACE2(coherence,io)
00024 
00025 
00026 /**
00027 * Signals that a malformed UTF-8 string has been read in a data input stream.
00028 *
00029 * @author jh  2007.12.31
00030 */
00031 class COH_EXPORT UTFDataFormatException
00032     : public throwable_spec<UTFDataFormatException,
00033         extends<IOException> >
00034     {
00035     friend class factory<UTFDataFormatException>;
00036 
00037     // ----- constructors ---------------------------------------------------
00038 
00039     protected:
00040         /**
00041         * Create an UTFDataFormatException.
00042         *
00043         * @param vsMsg   the detail message
00044         * @param vCause  the underlying cause of the exception
00045         *
00046         * @return a new UTFDataFormatException
00047         */
00048         UTFDataFormatException(String::View vsMsg = String::null_string,
00049                 Exception::View vCause = NULL);
00050     };
00051 
00052 COH_CLOSE_NAMESPACE2
00053 
00054 #endif // COH_UTF_DATA_FORMAT_EXCEPTION_HPP
Copyright © 2000, 2017, Oracle and/or its affiliates. All rights reserved.