rspec/rules/S1186/vbnet/notimplemented-code.adoc

8 lines
292 B
Plaintext
Raw Normal View History

2023-06-09 14:51:36 +02:00
By throwing the https://learn.microsoft.com/en-us/dotnet/api/system.notimplementedexception[`NotImplementedException`], the initial intention to add an implementation in the future is clear.
[source,vbnet]
----
Sub DoSomething() ' Compliant
Throw New NotImplementedException
End Sub
----