Skip to content

Commit

Permalink
Update create_user_defined_exceptions.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Oct 11, 2024
1 parent 1a27728 commit 0096bf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public:
}

template<typename exception_t>
employee_list_not_found_exception(const string& message, const exception_t& inner, const stack_frame& stack_frame = null) : exception(message, inner, stack_frame) {
employee_list_not_found_exception(const string& message, const exception_t& inner, const stack_frame& stack_frame = null) : exception {message, inner, stack_frame} {
}
};
```
Expand Down

0 comments on commit 0096bf3

Please sign in to comment.