class_FormClosedException.php
Go to the documentation of this file.00001 <?php
00025 class FormClosedException extends FrameworkException {
00033 public function __construct (array $classArray, $code) {
00034
00035 $message = sprintf("[%s:%d] Could not add form element <span class=\"exception_reason\">%s</span> because form is closed.",
00036 $classArray[0]->__toString(),
00037 $this->getLine(),
00038 $classArray[1]
00039 );
00040
00041
00042 parent::__construct($message, $code);
00043 }
00044 }
00045
00046
00047 ?>