diff options
author | Jack Lloyd <lloyd@randombit.net> | 2016-06-05 12:10:14 -0400 |
---|---|---|
committer | Jack Lloyd <lloyd@randombit.net> | 2016-06-07 08:30:28 -0400 |
commit | 67a215deb593c6850992537cb6cb3f55ab65a6ab (patch) | |
tree | 4be3b94476405f5115ab7a54f0015f58a0bf776d /src/lib/utils | |
parent | b87a43f4cce797c7f1ee4ecc9bed229f6458a4d6 (diff) |
Add Not_Implemented exception
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/exceptn.h | 10 |
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 |