Newscoop\Utils\Exception::setFile PHP Method

setFile() public method

Set file
public setFile ( string $file ) : void
$file string
return void
    public function setFile($file)
    {
        $file = realpath($file);
        if ($file) {
            $this->file = $file;
        }
    }