S
STom
I had assumed that if I have a try catch statement in Func1 and then receive
an exception, that it would throw one in Func0. Is that not correct? All
that happens is that it Throws an exception in Func1 and then goes to End
Try and keeps on moving.
private function Func0()
try
Func1()
catch ex as Exception
end try
end function
private function Func1()
try
catch ex as Exception
end try
end function
Thanks.
STom
an exception, that it would throw one in Func0. Is that not correct? All
that happens is that it Throws an exception in Func1 and then goes to End
Try and keeps on moving.
private function Func0()
try
Func1()
catch ex as Exception
end try
end function
private function Func1()
try
catch ex as Exception
end try
end function
Thanks.
STom