diff --git a/scripts/runfvp b/scripts/runfvp
index 135cf04d..ceae18ae 100755
--- a/scripts/runfvp
+++ b/scripts/runfvp
@@ -77,7 +77,8 @@ def start_fvp(args, fvpconf, extra_args):
         else:
             for line in fvp.stdout:
                 print(line.strip().decode(errors='ignore'))
-
+    except FileNotFoundError as e:
+        logger.error(f"FVP executable not found ({e})")
     finally:
         return fvp.stop()
 
