diff --git a/linux-ramdump-parser-v2/debug_image_v2.py b/linux-ramdump-parser-v2/debug_image_v2.py
index 061f1fd3c4969bc159b5bfd84929d11b73b43182..f63d37b67ee35fe097c2c4e7bccac9883ed37862 100644
--- a/linux-ramdump-parser-v2/debug_image_v2.py
+++ b/linux-ramdump-parser-v2/debug_image_v2.py
@@ -169,8 +169,11 @@ class DebugImage_v2():
         cache_type = lookup_cache_type(ramdump.hw_id, client_id, version)
         try:
             cache_type.parse(start, end, ramdump, outfile)
+        except NotImplementedError:
+            print_out_str('Cache dumping not supported for %s on this target'
+                          % client_name)
         except:
-            print_out_str('!!! Exception while running {0}'.format(client_name))
+            print_out_str('!!! Unhandled exception while running {0}'.format(client_name))
             print_out_exception()
         outfile.close()