A method raises an exception type that's too general or that's reserved by the runtime.
Rule descriptionThe following exception types are too general to provide sufficient information to the user:
The following exception types are reserved and should be thrown only by the common language runtime:
Don't throw general exceptions
If you throw a general exception type, such as Exception or SystemException, in a library or framework, it forces consumers to catch all exceptions, including unknown exceptions that they don't know how to handle.
Instead, either throw a more derived type that already exists in the framework, or create your own type that derives from Exception.
Throw specific exceptions
The following table shows which exception to throw for various types of invalid arguments, including the value parameter in the set
accessor of a property.
The following table shows which exception to throw for various types of invalid operations.
For all other situations, consider creating your own type that derives from Exception and throw that.
How to fix violationsTo fix a violation of this rule, change the type of the thrown exception to a specific type that's not one of the reserved types.
When to suppress warningsDo not suppress a warning from this rule.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4