Update parse_exceptions.md

Referring to https://github.com/nlohmann/json/blob/develop/doc/examples/parse_error.cpp  and https://json.nlohmann.me/home/exceptions/
(and also based on testing), the catch command should reference `catch (json::parse_error& ex)` and not `catch (json::exception::parse_error& ex)`
pull/2679/head
Fraser 2021-03-18 12:25:12 -04:00 committed by GitHub
parent 176d8e261a
commit 90d51b9205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ try
{
j = json::parse(my_input);
}
catch (json::exception::parse_error& ex)
catch (json::parse_error& ex)
{
std::cerr << "parse error at byte " << ex.byte << std::endl;
}