From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- .../classarmnn_1_1_file_not_found_exception.html | 245 +++++++++++++++++++++ 1 file changed, 245 insertions(+) create mode 100644 latest/classarmnn_1_1_file_not_found_exception.html (limited to 'latest/classarmnn_1_1_file_not_found_exception.html') diff --git a/latest/classarmnn_1_1_file_not_found_exception.html b/latest/classarmnn_1_1_file_not_found_exception.html new file mode 100644 index 0000000000..29c5ff14ea --- /dev/null +++ b/latest/classarmnn_1_1_file_not_found_exception.html @@ -0,0 +1,245 @@ + + + + + + + + +Arm NN: FileNotFoundException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FileNotFoundException Class Reference
+
+
+ +

#include <Exceptions.hpp>

+
+Inheritance diagram for FileNotFoundException:
+
+
+
+
[legend]
+
+Collaboration diagram for FileNotFoundException:
+
+
+
+
[legend]
+ + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Exception (const std::string &message)
 
 Exception (const std::string &message, const CheckLocation &location)
 exception with context More...
 
 Exception (const Exception &other, const std::string &message, const CheckLocation &location)
 preserving previous exception context and adding local context information More...
 
- Public Member Functions inherited from Exception
 Exception (const std::string &message)
 
 Exception (const std::string &message, const CheckLocation &location)
 exception with context More...
 
 Exception (const Exception &other, const std::string &message, const CheckLocation &location)
 preserving previous exception context and adding local context information More...
 
virtual const char * what () const noexcept override
 
+

Detailed Description

+
+

Definition at line 86 of file Exceptions.hpp.

+

Member Function Documentation

+ +

◆ Exception() [1/3]

+ +
+
+ + + + + +
+ + + + +
Exception
+
+explicit
+
+ +

preserving previous exception context and adding local context information

+ +

Definition at line 24 of file Exceptions.cpp.

+
27 : m_Message{other.m_Message}
+
28 {
+
29  m_Message += "\n" + message + location.AsString();
+
30 }
+
+
+
+ +

◆ Exception() [2/3]

+ +
+
+ + + + + +
+ + + + +
Exception
+
+explicit
+
+ +

Definition at line 12 of file Exceptions.cpp.

+
13 : m_Message{message}
+
14 {
+
15 }
+
+
+
+ +

◆ Exception() [3/3]

+ +
+
+ + + + + +
+ + + + +
Exception
+
+explicit
+
+ +

exception with context

+ +

Definition at line 17 of file Exceptions.cpp.

+
19 : m_Message{message}
+
20 {
+
21  m_Message += location.AsString();
+
22 }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1