00001 <?php 00024 class InvalidFormNameException extends FrameworkException { 00032 public function __construct (BaseHelper $helperInstance, $code) { 00033 // Add a message around the missing class 00034 $message = sprintf("[%s:%d] Form name not set.", 00035 $helperInstance->__toString(), 00036 $this->getLine() 00037 ); 00038 00039 // Call parent constructor 00040 parent::__construct($message, $code); 00041 } 00042 } 00043 00044 // [EOF] 00045 ?>
1.5.6