AcmePhp\Cli\Action\AbstractFlysystemAction::createRuntimeException PHP Метод

createRuntimeException() приватный метод

private createRuntimeException ( string $type, string $path, string $action, League\Flysystem\AdapterInterface $adapter ) : RuntimeException
$type string
$path string
$action string
$adapter League\Flysystem\AdapterInterface
Результат RuntimeException
    private function createRuntimeException($type, $path, $action, AdapterInterface $adapter)
    {
        return new \RuntimeException(sprintf('%s %s could not be %s on remote host (backend error: %s)', $type, $path, $action, $this->getLastError($adapter)));
    }