diff --git a/python/paddle/jit/dy2static/error.py b/python/paddle/jit/dy2static/error.py index a28e67d0de4e2ab2c9c6c8a8ef087a14df028f0c..5cad201d9ebf1eac61c72e7e01c849a278e31b75 100644 --- a/python/paddle/jit/dy2static/error.py +++ b/python/paddle/jit/dy2static/error.py @@ -245,12 +245,18 @@ class ErrorData: # Simplify error value to improve readability if error is raised in runtime if self.in_runtime: - if int( - os.getenv(SIMPLIFY_ERROR_ENV_NAME, DEFAULT_SIMPLIFY_NEW_ERROR) - ): - self._simplify_error_value() - message_lines.append(str(self.error_value)) - return '\n'.join(message_lines) + try: + if int( + os.getenv( + SIMPLIFY_ERROR_ENV_NAME, DEFAULT_SIMPLIFY_NEW_ERROR + ) + ): + self._simplify_error_value() + except: + pass + else: + message_lines.append(str(self.error_value)) + return '\n'.join(message_lines) # Step2: Optimizes stack information with source code information of dygraph from user. user_code_traceback_index = []