PHP Classes

Error Mapping

Recommend this page to a friend!

      NamespaceSim  >  All threads  >  Error Mapping  >  (Un) Subscribe thread alerts  
Subject:Error Mapping
Summary:Description of the error mapping feature
Messages:1
Author:Martin Alterisio
Date:2007-08-02 05:14:42
 

  1. Error Mapping   Reply   Report abuse  
Picture of Martin Alterisio Martin Alterisio - 2007-08-02 05:14:42
Error mapping provides a way for mapping all trappable errors in PHP to the right place where they came from. One disadvantage of code rewritting is that we lose the vital information for debugging on error placement, as errors do not occur in the original file, but in the rewritten one. Error mapping is an attempt to alleviate this disadvantage, as not all errors are trappable in PHP, and therefore we're hardly capable of mapping these untrappable errors.

You can use an error handler of your own with the error mapping feature. The error mapping will override your error handler but will proxy the errors captured with the filenames and line numbers corrected.