You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
# ImportError in the case when we are able to find the file but not able to load the module
77
+
err_msg=f"ImportError : Couldn't load function from {filepath} : {str(e)}. Not able to load the code provided in the file {abs_path}. Please ensure that the file contains the implementation code for the function."
78
+
raiseImportError(err_msg)
79
+
exceptFileNotFoundErrorase:
80
+
# FileNotFoundError in the case when we are not able to find the file at all at the path.
81
+
err_msg=f"FileNotFoundError : Couldn't load function from {filepath} : {str(e)}. This might be because the function implementation file does not exist. Please ensure the file exists at {abs_path}"
82
+
raiseFileNotFoundError(err_msg)
83
+
exceptExceptionase:
84
+
# Default exception, we don't know what exactly went wrong so we just output the error message
85
+
err_msg=f"Couldn't load function from {filepath} : {str(e)}."
0 commit comments