00001 <?php 00024 class UsernameMissingException extends FrameworkException { 00032 public function __construct(array $msgArray, $code = 0) { 00033 // Create the message 00034 $message = sprintf("[%s:%d] Username <span class=\"exception_reason\">%s</span> was not found.", 00035 $msgArray[0]->__toString(), 00036 $this->getLine(), 00037 $msgArray[1] 00038 ); 00039 00040 // Make sure everything is assigned properly 00041 parent::__construct($message, $code); 00042 } 00043 } 00044 00045 // [EOF] 00046 ?>
1.5.6