aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils
diff options
context:
space:
mode:
authorJack Lloyd <lloyd@randombit.net>2016-06-05 12:10:14 -0400
committerJack Lloyd <lloyd@randombit.net>2016-06-07 08:30:28 -0400
commit67a215deb593c6850992537cb6cb3f55ab65a6ab (patch)
tree4be3b94476405f5115ab7a54f0015f58a0bf776d /src/lib/utils
parentb87a43f4cce797c7f1ee4ecc9bed229f6458a4d6 (diff)
Add Not_Implemented exception
Diffstat (limited to 'src/lib/utils')
-rw-r--r--src/lib/utils/exceptn.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/utils/exceptn.h b/src/lib/utils/exceptn.h
index b6797f0f6..193d78ce9 100644
--- a/src/lib/utils/exceptn.h
+++ b/src/lib/utils/exceptn.h
@@ -215,6 +215,16 @@ struct BOTAN_DLL Self_Test_Failure : public Internal_Error
{}
};
+/**
+* Not Implemented Exception
+*/
+struct BOTAN_DLL Not_Implemented : public Exception
+ {
+ explicit Not_Implemented(const std::string& err) :
+ Exception("Not implemented", err)
+ {}
+ };
+
}
#endif