00001 <?php 00024 class FilePointerNotOpenedException extends FrameworkException { 00032 public function __construct ($fqfn, $code) { 00033 // Add a message around the missing class 00034 $message = sprintf("Not able to initialize a pointer for the file <span class=\"exception_reason\">%s</span>. Maybe the file is missing.", $fqfn); 00035 00036 // Call parent constructor 00037 parent::__construct($message, $code); 00038 } 00039 } 00040 00041 // [EOF] 00042 ?>
1.5.6