File tree Expand file tree Collapse file tree
exercises/concept/moviegoer/.docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,11 @@ Members get free popcorn when they watch any movie.
4242
4343Implement the ` Moviegoer.claim_free_popcorn! ` method.
4444If a viewer is a movie club member, they should be rewarded with their free popcorn.
45- If they are not, the method should raise the ` NotMovieClubMemberError ` exception defined at the top of the code.
45+ If they are not, the method should raise the `
46+ ~~~~ exercism/note
47+ In this exercise, you are expected to define the `UnsupportedOperation` exception for a specific scope.
48+ ~~~~
49+ ` exception defined at the top of the code.
4650
4751
4852``` ruby
@@ -52,3 +56,11 @@ Moviegoer.new(21, member: true).claim_free_popcorn!
5256Moviegoer .new (17 , member: false ).claim_free_popcorn!
5357# => Exception was raised! (NotMovieClubMemberError)
5458```
59+
60+ ~~~~ exercism/note
61+ In this exercise, you are expected to define the `
62+ ~~~~exercism/note
63+ In this exercise, you are expected to define the `UnsupportedOperation` exception for a specific scope.
64+ ~~~~
65+ ` exception for a specific scope.
66+ ~~~~
You can’t perform that action at this time.
0 commit comments