Lines Matching refs:what_arg
2367 exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} in exception() argument
2436 static parse_error create(int id_, const position_t& pos, const std::string& what_arg) in create() argument
2439 position_string(pos) + ": " + what_arg; in create()
2443 static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) in create() argument
2447 ": " + what_arg; in create()
2463 parse_error(int id_, std::size_t byte_, const char* what_arg) in parse_error() argument
2464 : exception(id_, what_arg), byte(byte_) {} in parse_error()
2513 static invalid_iterator create(int id_, const std::string& what_arg) in create() argument
2515 std::string w = exception::name("invalid_iterator", id_) + what_arg; in create()
2521 invalid_iterator(int id_, const char* what_arg) in invalid_iterator() argument
2522 : exception(id_, what_arg) {} in invalid_iterator()
2567 static type_error create(int id_, const std::string& what_arg) in create() argument
2569 std::string w = exception::name("type_error", id_) + what_arg; in create()
2575 type_error(int id_, const char* what_arg) : exception(id_, what_arg) {} in type_error() argument
2614 static out_of_range create(int id_, const std::string& what_arg) in create() argument
2616 std::string w = exception::name("out_of_range", id_) + what_arg; in create()
2622 out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {} in out_of_range() argument
2652 static other_error create(int id_, const std::string& what_arg) in create() argument
2654 std::string w = exception::name("other_error", id_) + what_arg; in create()
2660 other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} in other_error() argument