-
Notifications
You must be signed in to change notification settings - Fork 4
Gendarme.Rules.Exceptions.DoNotThrowReservedExceptionRule(2.10)
Assembly: Gendarme.Rules.Exceptions
Version: 2.10
This rule will fire if an System.ExecutionEngineException, System.IndexOutOfRangeException, NullReferenceException, or System.OutOfMemoryException class is instantiated. These exceptions are for use by the runtime and should not be thrown by user code.
Bad example:
public void Add (object obj)
{
if (obj == null) {
throw new NullReferenceException ("obj");
}
Inner.Add (obj);
}
Good example:
public void Add (object obj)
{
if (obj == null) {
throw new ArgumentNullException ("obj");
}
Inner.Add (obj);
}
- This rule is available since Gendarme 2.0
Note that this page was autogenerated (1/15/2011 12:27:16 PM) based on the xmldoc
comments inside the rules source code and cannot be edited from this wiki.
Please report any documentation errors, typos or suggestions to the
Gendarme Google Group. Thanks!
Note that this page was autogenerated (3/17/2011 9:31:58 PM) based on the xmldoc
comments inside the rules source code and cannot be edited from this wiki.
Please report any documentation errors, typos or suggestions to the
Gendarme Mailing List. Thanks!