D
dave m
I'm creating a class library (dll) and am confused as how to pass any
information, should any exceptions occur, back to the calling application.
Such as:
Try
x = 3 / 0 ' divide by 0 error
Catch ex as Exception
'(how do I pass ex info back to calling app?)
End Try
(In VB6 I would have used " Err.Raise Err.Number, Err.Source,
Err.Description".)
Any advice would be greatly appreciated.
Thanks,
Dave M.
information, should any exceptions occur, back to the calling application.
Such as:
Try
x = 3 / 0 ' divide by 0 error
Catch ex as Exception
'(how do I pass ex info back to calling app?)
End Try
(In VB6 I would have used " Err.Raise Err.Number, Err.Source,
Err.Description".)
Any advice would be greatly appreciated.
Thanks,
Dave M.