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

This is the documentation for a snapshot of the master branch, built from commit c6a8213e9b.
PrevUpHomeNext

Struct process_error

boost::process::process_error — The exception usually thrown by boost.process.

Synopsis

// In header: <boost/process/exception.hpp>


struct process_error : public std::system_error {
};

Description

It merely inherits std::system_error but can then be distinguished in the catch-block from other system errors.


PrevUpHomeNext