PrevUpHomeNext

Struct tailoring_error

boost::text::tailoring_error

Synopsis

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


struct tailoring_error : public std::exception {
  // construct/copy/destruct
  tailoring_error(string_view);

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

Description

The type of exception thrown when some aspect of the requested tailoring cannot be performed.

tailoring_error public construct/copy/destruct

  1. tailoring_error(string_view msg);

tailoring_error public member functions

  1. char const * what() const noexcept;

PrevUpHomeNext