Clarify exception message when an empty response is returned

main
Jordi Boggiano 11 years ago
parent 5264d0637b
commit 81f1451118

@ -172,6 +172,10 @@ class RemoteFilesystem
// handle copy command if download was successful
if (false !== $result && null !== $fileName) {
if ('' === $result) {
throw new TransportException('"'.$this->fileUrl.'" appears broken, and returned an empty 200 response');
}
$errorMessage = '';
set_error_handler(function ($code, $msg) use (&$errorMessage) {
if ($errorMessage) {

Loading…
Cancel
Save