00001 <?php 00025 class ContainerItemIsNullException extends FrameworkException { 00033 public function __construct (FrameworkInterface $class, $code) { 00034 // Add a message around the missing class 00035 $message = sprintf("[%s:%d] A container item is <em>null</em>.", 00036 $class->__toString(), 00037 $this->getLine() 00038 ); 00039 00040 // Call parent constructor 00041 parent::__construct($message, $code); 00042 } 00043 } 00044 00045 // [EOF] 00046 ?>
1.5.6