0 follower

Class yii\web\HeadersAlreadySentException

Inheritanceyii\web\HeadersAlreadySentException » yii\base\Exception » Exception
Available since version2.0.14
Source Code https://github.com/yiisoft/yii2/blob/master/framework/web/HeadersAlreadySentException.php

HeadersAlreadySentException represents an exception caused by any headers that were already sent before web response was sent.

Method Details

Hide inherited methods

__construct() public method

public __construct ( mixed $file, mixed $line )
$file mixed
$line mixed

 public function __construct($file, $line) { $message = YII_DEBUG ? "Headers already sent in {$file} on line {$line}." : 'Headers already sent.'; parent::__construct($message); }  
getName() public method
public string getName ( )
return string

The user-friendly name of this exception

 public function getName() { return 'Exception'; }