03.02.06

Head-to-Head: perl’s eval, Exception.pm, Exception/Class.pm and Error.pm

Posted in perl at 5:43 pm by mshiltonj

I wanted to use a more OO approach to error handling in perl instead of just plain old eval , so I did some looking around. I wanted it to be easy, so I looked at these modules (UPDATE: Exception::Class included here thanks to William Sutton):

Exception
Error
Exception::Class

I also found this article on perl exception handling: Object […]