rspec/rules/S1186/vb6/notsupported-code.adoc
2023-06-09 14:51:36 +02:00

8 lines
279 B
Plaintext

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
----