00001 <?php 00024 class ConfigEntryIsEmptyException extends FrameworkException { 00032 public function __construct (FrameworkConfiguration $class, $code) { 00033 // Add a message around the missing class 00034 $message = sprintf("[%s:%d] Empty configuration entry provided!", 00035 $class->__toString(), 00036 $this->getLine() 00037 ); 00038 00039 // Call parent constructor 00040 parent::__construct($message, $code); 00041 } 00042 } 00043 00044 // [EOF] 00045 ?>
1.5.6