class_ClassNotFoundException.php
Go to the documentation of this file.00001 <?php
00026 class ClassNotFoundException extends FrameworkException {
00034 public function __construct (array $msgArray, $code) {
00035
00036 $message = sprintf("[%s:%d] Internal class <span class=\"exception_reason\">%s</span> not found.",
00037 $msgArray[0]->__toString(),
00038 $this->getLine(),
00039 $msgArray[1]
00040 );
00041
00042
00043 $this->setExtraData($msgArray[1]);
00044
00045
00046 parent::__construct($message, $code);
00047 }
00048 }
00049
00050
00051 ?>