rspec/rules/S1186/vb6/notsupported-code.adoc

8 lines
279 B
Plaintext
Raw Normal View History

2023-06-09 14:51:36 +02:00
In order to provide the initial intention to not add an implementation in the future, you can raise an error and specify that the procedure will not be implemented.
[source,vb6,diff-id=1,diff-type=compliant]
----
Sub DoSomething()
Err.Raise(1, , "NotSupported")
End Sub
----