2017-08-29 21:46:26 +00:00
|
|
|
#include <iostream>
|
2018-02-01 21:20:26 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2017-08-29 21:46:26 +00:00
|
|
|
|
|
|
|
using json = nlohmann::json;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// calling at() for a non-existing key
|
|
|
|
json j = {{"foo", "bar"}};
|
|
|
|
json k = j.at("non-existing");
|
|
|
|
}
|
|
|
|
catch (json::exception& e)
|
|
|
|
{
|
|
|
|
// output exception information
|
|
|
|
std::cout << "message: " << e.what() << '\n'
|
|
|
|
<< "exception id: " << e.id << std::endl;
|
|
|
|
}
|
|
|
|
}
|