Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext
stage_response::error

Retrieves the contained error code.

Synopsis
error_code
error() const;
Description

If *this contains an error, retrieves it. Otherwise (if this->has_statement() || this->has_results()), returns an empty (default-constructed) error code.

Exception safety

No-throw guarantee.


PrevUpHomeNext