Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class error

trial::dynamic::error — Dynamic system error.

Synopsis

// In header: <boost/libs/trial.protocol/include/trial/dynamic/error.hpp>


class error : public system_error {
public:
  // construct/copy/destruct
  error(std::error_code);
};

Description

Specialization of std::system_error that is used to distinguish between exceptions throw from Trial.Dynamic and other components.

error public construct/copy/destruct

  1. error(std::error_code ec);
    Constructs an exception from an error code.

PrevUpHomeNext