I was about to refactor this following VB6 code (written by someone else).
Public Function GetValue(ID As Long) As Boolean
On Error GoTo eh
'' ... DAL Logic...
eh_Exit:
On Error GoTo 0
Exit Function
eh:
Resume eh_Exit
End Function
What do you think the original author's intention was for the label eh
?
Probably Just "eh, something happened?"...
I want to make it readable without me having to think about it just like now...