From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/_exceptions_8cpp_source.xhtml | 120 ++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 21.02/_exceptions_8cpp_source.xhtml (limited to '21.02/_exceptions_8cpp_source.xhtml') diff --git a/21.02/_exceptions_8cpp_source.xhtml b/21.02/_exceptions_8cpp_source.xhtml new file mode 100644 index 0000000000..f89c53d5a4 --- /dev/null +++ b/21.02/_exceptions_8cpp_source.xhtml @@ -0,0 +1,120 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/Exceptions.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Exceptions.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #include <armnn/Exceptions.hpp>
6 
7 #include <string>
8 
9 namespace armnn
10 {
11 
12 Exception::Exception(const std::string& message)
13 : m_Message{message}
14 {
15 }
16 
17 Exception::Exception(const std::string& message,
18  const CheckLocation& location)
19 : m_Message{message}
20 {
21  m_Message += location.AsString();
22 }
23 
25  const std::string& message,
26  const CheckLocation& location)
27 : m_Message{other.m_Message}
28 {
29  m_Message += "\n" + message + location.AsString();
30 }
31 
32 const char* Exception::what() const noexcept
33 {
34  return m_Message.c_str();
35 }
36 
38 : Exception("Function not yet implemented")
39 {
40 }
41 
42 }
Exception(const std::string &message)
Definition: Exceptions.cpp:12
+
virtual const char * what() const noexcept override
Definition: Exceptions.cpp:32
+
Copyright (c) 2021 ARM Limited and Contributors.
+ + +
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46
+ +
+
+ + + + -- cgit v1.2.1