diff options
author | Jack Lloyd <[email protected]> | 2019-08-05 19:03:25 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-08-05 19:03:25 -0400 |
commit | d5b7496378fe25d732860bef23a15cef3de95310 (patch) | |
tree | acb475e37b3801dfe4a419703afdcd9f27bb1730 /src/lib/utils | |
parent | 4f5abd164cd37ec58b3ae94b3afb997f9f7b1320 (diff) |
Fix
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/parsing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/parsing.cpp b/src/lib/utils/parsing.cpp index 197f4a11c..ae95b1a87 100644 --- a/src/lib/utils/parsing.cpp +++ b/src/lib/utils/parsing.cpp @@ -201,7 +201,7 @@ std::vector<uint32_t> parse_asn1_oid(const std::string& oid) #if defined(BOTAN_HAS_ASN1) return OID(oid).get_components(); #else - throw Not_Supported("ASN1 support not available"); + throw Not_Implemented("ASN1 support not available"); #endif } |