We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a2202 commit 20f194cCopy full SHA for 20f194c
tlsexception.cpp
@@ -0,0 +1,8 @@
1
+#include <openssl/ssl.h>
2
+#include "tlsexception.h"
3
+
4
+TLSException::TLSException(const char *msg) : runtime_error(msg) {
5
+}
6
7
+TLSException::TLSException(int err) : runtime_error(SSL_alert_desc_string_long(err)) {
8
0 commit comments