Skip to content

Commit

Permalink
refactor: more convenient error message
Browse files Browse the repository at this point in the history
When component is not found.
  • Loading branch information
3Hren committed Jul 14, 2017
1 parent 8ed78f9 commit 88170b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ struct config : public config_t {
if(it != component_groups.end()) {
return it->second;
}
throw error_t(error::component_not_found, "component group {} is missing in config", name);
throw error_t(error::component_not_found, "component group `{}` is missing in config", name);
}

static
Expand Down

0 comments on commit 88170b3

Please sign in to comment.