class_UserInstanceMissingException.php
Go to the documentation of this file.00001 <?php
00024 class UserInstanceMissingException extends FrameworkException {
00032 public function __construct (array $classArray, $code) {
00033
00034 $message = sprintf("[%s:%d] Registry key <span class=\"exception_reason\">%s</span> does not include a class with implemented interface <u>Manageable(User|Guest)</u>.",
00035 $classArray[0]->__toString(),
00036 $this->getLine(),
00037 $classArray[1]
00038 );
00039
00040
00041 parent::__construct($message, $code);
00042 }
00043 }
00044
00045
00046 ?>