aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes256cbc.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/aes256cbc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/aes256cbc.cpp b/examples/aes256cbc.cpp
index 8ce14c2..c5ab427 100644
--- a/examples/aes256cbc.cpp
+++ b/examples/aes256cbc.cpp
@@ -47,6 +47,11 @@ int main()
return 0;
}
+ catch (const aesni::Error& e)
+ {
+ std::cerr << e;
+ return 1;
+ }
catch (const std::exception& e)
{
std::cerr << e.what() << "\n";