MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / error_t

Class error_t

3rdparty/cppzmq/zmq.hpp:290–303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288#endif
289
290class error_t : public std::exception
291{
292 public:
293 error_t() ZMQ_NOTHROW : errnum(zmq_errno()) {}
294 explicit error_t(int err) ZMQ_NOTHROW : errnum(err) {}
295 virtual const char *what() const ZMQ_NOTHROW ZMQ_OVERRIDE
296 {
297 return zmq_strerror(errnum);
298 }
299 int num() const ZMQ_NOTHROW { return errnum; }
300
301 private:
302 int errnum;
303};
304
305namespace detail {
306inline int poll(zmq_pollitem_t *items_, size_t nitems_, long timeout_)

Callers 15

pollFunction · 0.85
message_tFunction · 0.85
rebuildFunction · 0.85
moveFunction · 0.85
copyFunction · 0.85
getFunction · 0.85
getsFunction · 0.85
set_routing_idFunction · 0.85
set_groupFunction · 0.85
context_tFunction · 0.85
setFunction · 0.85
setsockoptFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected