From ae050524109f1ce827962665436ef7430f2ac479 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Wed, 22 Mar 2023 16:48:58 +0000 Subject: IVGCVSW-7255 Update Doxygen Documentation and publish on GitHub. * Updating Doxygen documentation for 23.02 release. Signed-off-by: David Monahan Change-Id: I545574ff7664b4595d2fe6a91a3c35d2ad55df82 --- ...ssarmnn_1_1_backend_unavailable_exception.xhtml | 252 +++++++++++++++++++++ 1 file changed, 252 insertions(+) create mode 100644 latest/classarmnn_1_1_backend_unavailable_exception.xhtml (limited to 'latest/classarmnn_1_1_backend_unavailable_exception.xhtml') diff --git a/latest/classarmnn_1_1_backend_unavailable_exception.xhtml b/latest/classarmnn_1_1_backend_unavailable_exception.xhtml new file mode 100644 index 0000000000..364b7ea6b8 --- /dev/null +++ b/latest/classarmnn_1_1_backend_unavailable_exception.xhtml @@ -0,0 +1,252 @@ + + + + + + + + + + + + + +ArmNN: BackendUnavailableException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
BackendUnavailableException Class Reference
+
+
+ +

Class for non-fatal exceptions raised while initialising a backend. + More...

+ +

#include <Exceptions.hpp>

+
+Inheritance diagram for BackendUnavailableException:
+
+
+ + +Exception +ClRuntimeUnavailableException + +
+ + + + + + + + + + + + + + + + + + + + + +

+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

+

Class for non-fatal exceptions raised while initialising a backend.

+ +

Definition at line 68 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