Source for file erroFatal.classe.php

Documentation is available at erroFatal.classe.php

  1. <?php
  2.  
  3.  
  4. class erroFatal{
  5.     function erroFatal($strMsg){
  6.         try{
  7.             $this->triggerError($strMsg);
  8.         }
  9.         catch (Exception $e){
  10.             echo $e->buildLog();
  11.         }
  12.     }
  13.     
  14.     private function triggerError($strMsg){
  15.         trigger_error($strMsg,E_USER_ERROR);
  16.     }
  17. }
  18.  
  19. ?>

Documentation generated on Sun, 09 Mar 2008 23:51:42 -0300 by phpDocumentor 1.4.0

SourceForge.net Logo Support This Project