00001 <?php 00013 class CodeToDiagramException extends Exception 00014 { 00015 public function __construct( $strMessage ) 00016 { 00017 print $strMessage . " on " . $this->getFile() . " line " . $this->getLine() . " <br/>\n<pre> "; 00018 print_r( $this->getTrace() ); 00019 exit(); 00020 } 00021 } 00022 ?>
1.5.9