Kedrigern\phpIO\NotEnoughPrivileges::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $required, integer $real, string $filename )
$required string
$real integer
$filename string
    public function __construct($required, $real, $filename)
    {
        $this->requiredPriv = $required;
        $this->realPriv = $real;
        $this->filename = $filename;
        parent::__construct("Not enough privileges for file " . $filename . " (required " . $this->requiredPriv . ")");
    }
NotEnoughPrivileges