aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Exceptions.hpp
diff options
context:
space:
mode:
authorFinnWilliamsArm <Finn.Williams@arm.com>2019-09-17 16:53:53 +0100
committerJim Flynn Arm <jim.flynn@arm.com>2019-09-24 23:44:51 +0000
commit4833cea9036df428634cf64d8f1c4b54fc5da41f (patch)
treeab5857df8a0761b4df2d894ed0785a9b6db64363 /include/armnn/Exceptions.hpp
parent11b2eca4ab0c0e897b858f61be7e6b90f810fd2b (diff)
downloadarmnn-4833cea9036df428634cf64d8f1c4b54fc5da41f.tar.gz
IVGCVSW-3439 Create the Command Thread
Signed-off-by: FinnWilliamsArm <Finn.Williams@arm.com> Change-Id: I9548c5937967f4c25841bb851273168379687bcd
Diffstat (limited to 'include/armnn/Exceptions.hpp')
-rw-r--r--include/armnn/Exceptions.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/armnn/Exceptions.hpp b/include/armnn/Exceptions.hpp
index f8e0b430a6..e21e974fc7 100644
--- a/include/armnn/Exceptions.hpp
+++ b/include/armnn/Exceptions.hpp
@@ -125,6 +125,11 @@ class MemoryExportException : public Exception
using Exception::Exception;
};
+class TimeoutException : public Exception
+{
+ using Exception::Exception;
+};
+
template <typename ExceptionType>
void ConditionalThrow(bool condition, const std::string& message)
{