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:
committed by
Matias Fontanini
parent
3659d89c25
commit
c26e4943c2
@@ -128,7 +128,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* \brief Exception thrown when PacketSender fails to close a socket.
|
* \brief Exception thrown when PacketSender fails to close a socket.
|
||||||
*/
|
*/
|
||||||
class socket_close_error : exception_base {
|
class socket_close_error : public exception_base {
|
||||||
public:
|
public:
|
||||||
socket_close_error(const std::string& msg)
|
socket_close_error(const std::string& msg)
|
||||||
: exception_base(msg) { }
|
: exception_base(msg) { }
|
||||||
|
|||||||
Reference in New Issue
Block a user