aboutsummaryrefslogtreecommitdiffstats
path: root/common/rdr/TLSException.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/rdr/TLSException.h')
-rw-r--r--common/rdr/TLSException.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/rdr/TLSException.h b/common/rdr/TLSException.h
index b519bfef..cfa73f69 100644
--- a/common/rdr/TLSException.h
+++ b/common/rdr/TLSException.h
@@ -25,9 +25,10 @@
namespace rdr {
- struct TLSException : public Exception {
+ class tls_error : public std::runtime_error {
+ public:
int err;
- TLSException(const char* s, int err_);
+ tls_error(const char* s, int err_);
};
}