ZmqException

A class for exceptions thrown when any of the underlying $(ZMQ) C functions report an error.

The exception provides a standard error message obtained with $(ZMQREF zmq_strerror()), as well as the errno code set by the $(ZMQ) function which reported the error.

@safe
class ZmqException : Exception {}

Members

Variables

errno
int errno;

The _errno code that was set by the $(ZMQ) function that reported the error.

Meta