I have a Try/Catch block that captures an exception and I log this error. But I want to reraise the exception because I don't want the code to continue executing. I want a top level try/catch block to handle the exception.
In Delphi I could catch the exception in the rtn where it occurred, log it, then execute a RAISE to reraise the same exception again, this time outside of the Try/Catch block so another Try/Catch block will handle it.
Can I accomplish this in B4X?
TIA
In Delphi I could catch the exception in the rtn where it occurred, log it, then execute a RAISE to reraise the same exception again, this time outside of the Try/Catch block so another Try/Catch block will handle it.
Can I accomplish this in B4X?
TIA