1.

What Happen When There Is No Handler For A Raised Exception?

Answer»

If an exception is raised and there is no handler in the current block, the exception WOULD PROPAGATE to the enclosing block. If no handler is FOUND in the enclosing block, the exception will be propagated to the CALLING environment as an UNHANDLED exception.

If an exception is raised and there is no handler in the current block, the exception would propagate to the enclosing block. If no handler is found in the enclosing block, the exception will be propagated to the calling environment as an unhandled exception.



Discussion

No Comment Found