PrevUpHomeNext

Struct parse_error

boost::text::parse_error

Synopsis

// In header: <boost/text/parser_fwd.hpp>


struct parse_error : public std::exception {
  // construct/copy/destruct
  parse_error(string_view, int, int);

  // public member functions
  char const * what() const noexcept;
  int line() const;
  int column() const;
};

Description

The type of exception thrown when a parse error is encountered.

parse_error public construct/copy/destruct

  1. parse_error(string_view msg, int line, int column);

parse_error public member functions

  1. char const * what() const noexcept;
  2. int line() const;
  3. int column() const;

PrevUpHomeNext