You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/util/exceptions.hpp

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