in reply to Advantage of Exception handling in perl

ADVANTAGE OF EXCEPTION HANDLING:

Object-oriented exception handling allows you to separate error-handling code from the normal code. As a result, the code is less complex, more readable and, at times, more efficient. The code is more efficient because the normal execution path doesn't have to check for errors. As a result, valuable CPU cycles are saved.

Check this link Exception Handling

  • Comment on Re: Advantage of Exception handling in perl