diff --git a/index.js b/index.js
index 0c4aab22b96d0ded133fb81edf3664443caa73b6..eb6dcdd8177116329b445020a927d6350e7a8f21 100644
--- a/index.js
+++ b/index.js
@@ -297580,14 +297580,9 @@ function parseServiceId(result) {
   if (contractInfo !== undefined) {
     return contractInfo['serviceSouscritId']
   } else {
-    const errorMessage =
+    throw new Error(
       "No serviceSouscritId found, contract hasn't been created properly."
-    Sentry.captureException(errorMessage, {
-      tags: {
-        section: 'parseServiceId',
-      },
-    })
-    throw new Error(errorMessage)
+    )
   }
 }