Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Context::Get/GetShared now throws KeyNotFound instead of std::out_of_range #7

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cucumber-cpp/Context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ namespace cucumber_cpp
{
struct ContextStorage
{
struct KeyNotFound : std::out_of_range
{
using std::out_of_range::out_of_range;
};

struct Entry
{
Entry(std::string_view key,
Expand Down Expand Up @@ -79,7 +84,7 @@ namespace cucumber_cpp
else
{
std::cerr << "key not found: \"" << key << "\"" << std::endl;
throw std::out_of_range{ std::string{ key } };
throw KeyNotFound{ std::string{ key } };
}
}

Expand Down