00001 <?php 00024 class FilterChainException extends FrameworkException { 00032 public function __construct(Filterable $filterInstance, $code) { 00033 // Construct the message 00034 $message = sprintf("[%s:%d] Filter chain interruppted by fatal error in filter.", 00035 $filterInstance->__toString(), 00036 $this->getLine() 00037 ); 00038 00039 // Call the parent exception 00040 parent::__construct($message, $code); 00041 } 00042 } 00043 00044 // [EOF] 00045 ?>
1.5.6