diff options
author | Jack Lloyd <[email protected]> | 2019-10-16 12:37:46 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-10-16 12:37:46 -0400 |
commit | 16367f7468c9257f8eee2f5fcc26887e794bb6c7 (patch) | |
tree | c7320d26d7ac2b6277003623d25ea2c28c8be087 /src/lib/utils | |
parent | f557d215ad04d93c0e89caaa89d452528f652a58 (diff) | |
parent | bbd1639873c098196298c83ac076f6db096654ed (diff) |
Merge GH #2157 Handle new RoughtimeError type
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/exceptn.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/utils/exceptn.cpp b/src/lib/utils/exceptn.cpp index d5845e09d..e6d067f34 100644 --- a/src/lib/utils/exceptn.cpp +++ b/src/lib/utils/exceptn.cpp @@ -46,6 +46,8 @@ std::string to_string(ErrorType type) return "HttpError"; case ErrorType::InvalidTag: return "InvalidTag"; + case ErrorType::RoughtimeError: + return "RoughtimeError"; case ErrorType::OpenSSLError : return "OpenSSLError"; case ErrorType::CommonCryptoError: |