[Feature #18915] Scope change for NotImplementedError
#7201
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Issue
Resolves https://bugs.ruby-lang.org/issues/18915
Description
Updates documentation for
NotImplementedError
to expand its defined usage to include when a method is not implemented because it's designed to be abstract and overridden in a subclass.Context
There is currently no semantically correct error to raise when an abstract method is defined, but designed to be implemented in a subclass only.
NoMethodError
is incorrect because there is a method defined (used to declare a common interface).Given the existing widespread adoption of
NotImplementedError
for this scenario, this PR simply updates the definition to consider it valid usage.Alternative Approach Considered
I debated creating a new
MustOverrideError
that inherits fromStandardError
but opted to expand the scope ofNotImplementedError
given the existing adoption and semantic correctness.