diff --git a/src/Geocoder.php b/src/Geocoder.php
index afeadf6..4454c1b 100644
--- a/src/Geocoder.php
+++ b/src/Geocoder.php
@@ -48,7 +48,7 @@ class Geocoder implements GeocoderInterface {
       try {
         $result = $provider->getPlugin()->geocode($data);
         if (!isset($result) || $result->isEmpty()) {
-          throw new \Exception();
+          throw new \Exception(sprintf('The empty result was received from the "%s" geocoder for "%s" data.', $provider->id(), $data));
         }
         return $result;
       }
