aboutsummaryrefslogtreecommitdiff
path: root/ConversionUtils.hpp
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2019-12-11 19:27:11 +0000
committerKevin May <kevin.may@arm.com>2019-12-17 16:42:50 +0000
commit0518d71d5a99ad1f45091d4695126c5e44ae615d (patch)
tree341dcaf917059d923ce7e7dc4a50a273dae33176 /ConversionUtils.hpp
parent207b4f3347cfd813f32954d447bc17bebf726d6d (diff)
downloadandroid-nn-driver-0518d71d5a99ad1f45091d4695126c5e44ae615d.tar.gz
Catch std::exception instead of armnn::Exception
Signed-off-by: Derek Lamberti <derek.lamberti@arm.com> Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I054635ebfd52cb5575490c3bfaae0104eb1685cc
Diffstat (limited to 'ConversionUtils.hpp')
-rw-r--r--ConversionUtils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ConversionUtils.hpp b/ConversionUtils.hpp
index fabf1896..b695aa65 100644
--- a/ConversionUtils.hpp
+++ b/ConversionUtils.hpp
@@ -1800,7 +1800,7 @@ bool ConvertConcatenation(const Operation& operation, const Model& model, Conver
concatDescriptor =
armnn::CreateDescriptorForConcatenation(inputShapes.begin(), inputShapes.end(), concatDim);
}
- catch (const armnn::Exception& error)
+ catch (std::exception& error)
{
return Fail("%s: Error preparing concat descriptor. %s", __func__, error.what());
}