Bolt\Exception\FileNotStackableException::__construct PHP Method

__construct() public method

public __construct ( Bolt\Filesystem\Handler\FileInterface $file, $message = '' )
$file Bolt\Filesystem\Handler\FileInterface
    public function __construct(FileInterface $file, $message = '')
    {
        $this->unstackableFile = $file;
        parent::__construct($message ?: 'File is not stackable: ' . $file->getFullPath(), 0);
    }