asio C++ library

PrevUpHomeNext

system_error::system_error

Construct with an error code.

system_error(
    const error_code & code);

Construct with an error code and context.

system_error(
    const error_code & code,
    const std::string & context);

Copy constructor.

system_error(
    const system_error & other);

PrevUpHomeNext