class_GetterNotFoundException.php
Go to the documentation of this file.00001 <?php
00026 class GetterNotFoundException extends FrameworkException {
00034 public function __construct (array $dataArray, $code) {
00035
00036 $message = sprintf("[%s:%d] Getter-Methode für Attribut <span class=\"exception_reason\">%s</span> nicht gefunden.",
00037 $dataArray[0]->__toString(),
00038 $this->getLine(),
00039 $dataArray[1]
00040 );
00041
00042
00043 parent::__construct($message, $code);
00044 }
00045 }
00046
00047
00048 ?>