1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/exceptions.hpp
Jeff 4c897f583c
fix up log statements
* make socket bind errors have a distinct message reported when caught using their own exception type
* omit printing banner in setup when we run from the lokinet executable (but not the liblokinet.so entry point)
2022-08-22 16:50:46 -04:00

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