1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Added base class access specifier for socket_close_error (#306)

This commit is contained in:
Ulf Wetzker
2018-08-02 18:17:07 +02:00
committed by Matias Fontanini
parent 3659d89c25
commit c26e4943c2

View File

@@ -128,7 +128,7 @@ public:
/**
* \brief Exception thrown when PacketSender fails to close a socket.
*/
class socket_close_error : exception_base {
class socket_close_error : public exception_base {
public:
socket_close_error(const std::string& msg)
: exception_base(msg) { }