rspec/rules/S1163/vbnet/rule.adoc
2021-01-22 04:06:24 +00:00

27 lines
466 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
Try
' Some work which end up throwing an exception
Throw New ArgumentException()
Finally
' Clean up
Throw New InvalidOperationException() ' Noncompliant; will mask the ArgumentException
End Try
----
== Compliant Solution
----
Try
' Some work which end up throwing an exception
Throw New ArgumentException()
Finally
' Clean up
End Try
----
include::../see.adoc[]