00001 <?php 00026 class FileNotFoundException extends FrameworkException { 00034 public function __construct ($fqfn, $code) { 00035 // Add a message around the missing class 00036 $message = sprintf("The requested file <span class=\"exception_reason\">%s</span> was not found.", 00037 $fqfn 00038 ); 00039 00040 // Set extra data 00041 $this->setExtraData(basename($fqfn)); 00042 00043 // Call parent constructor 00044 parent::__construct($message, $code); 00045 } 00046 } 00047 00048 // [EOF] 00049 ?>
1.5.6