class_ConfigEntryNotFoundException.php

Go to the documentation of this file.
00001 <?php
00026 class ConfigEntryNotFoundException extends FrameworkException {
00034         public function __construct (array $classArray, $code) {
00035                 // Add a message around the missing class
00036                 $message = sprintf("[%s:%d] Configuration entry <span class=\"exception_reason\">%s</span> not found.",
00037                         $classArray[0],
00038                         $this->getLine(),
00039                         $classArray[1]
00040                 );
00041 
00042                 // Set extra data
00043                 $this->setExtraData($classArray[1].":".$this->getLine());
00044 
00045                 // Call parent constructor
00046                 parent::__construct($message, $code);
00047         }
00048 }
00049 
00050 // [EOF]
00051 ?>

Generated on Mon Dec 8 01:06:45 2008 for Ship-Simulator by  doxygen 1.5.6