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 --- ...classarmnn_1_1_invalid_argument_exception.xhtml | 132 ++++++++++++++++++--- 1 file changed, 116 insertions(+), 16 deletions(-) (limited to '23.02/classarmnn_1_1_invalid_argument_exception.xhtml') diff --git a/23.02/classarmnn_1_1_invalid_argument_exception.xhtml b/23.02/classarmnn_1_1_invalid_argument_exception.xhtml index e4f1e941da..0021d2e9ab 100644 --- a/23.02/classarmnn_1_1_invalid_argument_exception.xhtml +++ b/23.02/classarmnn_1_1_invalid_argument_exception.xhtml @@ -8,7 +8,7 @@ - + ArmNN: InvalidArgumentException Class Reference @@ -19,9 +19,6 @@ - @@ -30,7 +27,8 @@ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); - + + @@ -51,18 +49,21 @@ - + +/* @license-end */
@@ -76,7 +77,9 @@ $(function() {
@@ -95,6 +98,7 @@ $(document).ready(function(){initNavTree('classarmnn_1_1_invalid_argument_except
InvalidArgumentException Class Reference
@@ -108,12 +112,20 @@ Inheritance diagram for InvalidArgumentException:
-Exception - -
+Exception + + - + + + + + + + + + @@ -129,7 +141,95 @@ Additional Inherited Members

Detailed Description

Definition at line 80 of file Exceptions.hpp.

-

The documentation for this class was generated from the following file:

-Additional Inherited Members

+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
+
+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: @@ -138,9 +238,9 @@ Additional Inherited Members -- cgit v1.2.1