mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
11 lines
185 B
C++
11 lines
185 B
C++
|
#pragma once
|
||
|
|
||
|
namespace llarp::util
|
||
|
{
|
||
|
class bind_socket_error : public std::runtime_error
|
||
|
{
|
||
|
public:
|
||
|
using std::runtime_error::runtime_error;
|
||
|
};
|
||
|
} // namespace llarp::util
|