Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Type error_handler_result

boost::parser::error_handler_result

Synopsis

// In header: <boost/parser/error_handling_fwd.hpp>



enum error_handler_result { fail, rethrow };

Description

The possible actions to take when a parse error is handled by an error handler.

rethrow
Fail the top-level parse.

Re-throw the parse error exception.


PrevUpHomeNext