You are on page 1of 1

--> Exception Handling --Exception: An unexpected runtime error --syntax errors /compile-time errors --execution err / runtime err

--logical error types of exception --synchroneous exception --Asynchroneous exception --unstructured exception handling --structured exception handling on error goto statement syntax: on error goto [labelname/line/0/1] sub main() ----on error goto err1 ------err1: ' exception handlers end sub --> Structured exception handling --try --catch --finally --throw syntax: try statement1 statement2 ----------catch statement1 ' exception handlers ---end try

You might also like