Saved Bookmarks
| 1. |
What is Error Handling? What are the different types of errors in Perl? |
|
Answer» ERROR handling is the approach of taking appropriate actions against the program when it pops up with an error or is experiencing difficulty in executing the code. There are two types of errors in Perl:
Perl PROVIDES two built-in functions for generating fatal exceptions & warnings. These are: die() warn() |
|