Kedrigern\phpIO\NotEnoughPrivileges::__construct PHP Method

__construct() public method

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