class_VariableIsNotSetException.php
Go to the documentation of this file.00001 <?php
00024 class VariableIsNotSetException extends FrameworkException {
00032 public function __construct (array $array, $code) {
00033
00034 $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation <span class=\"exception_reason\">%s</span> wurde keine Variable <span class=\"exception_reason\">%s</span> erzeugt.",
00035 $array[0]->__toString(),
00036 $this->getLine(),
00037 $array[1],
00038 $array[2]
00039 );
00040
00041
00042 parent::__construct($message, $code);
00043 }
00044 }
00045
00046
00047 ?>