Skip to content

Commit

Permalink
feat: Context::Get/GetShared now throws KeyNotFound instead of std::o…
Browse files Browse the repository at this point in the history
…ut_of_range (#7)
  • Loading branch information
daantimmer authored Jan 11, 2024
1 parent 9c2eb07 commit 10b83eb
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 10b83eb

Please sign in to comment.