diff --git a/src/Services/NetworkingService.php b/src/Services/NetworkingService.php index 3ffefc14..fbba649a 100644 --- a/src/Services/NetworkingService.php +++ b/src/Services/NetworkingService.php @@ -59,9 +59,9 @@ class NetworkingService { $srcHandle = fopen($url, 'rb'); } - catch (Exception $e) + catch (\Exception $e) { - throw new \Exception('Cannot open URL for reading: ' . $e->getMessage()); + throw new \Exception('Cannot open URL "' . $url . '" for reading: ' . $e->getMessage()); } if (!$srcHandle)