Skip to content

Commit

Permalink
Remove description of exception handling from exception text (#3747)
Browse files Browse the repository at this point in the history
An exception should describe the exception, not other associated
behaviour.

## Type of change

- Update to human readable text: Documentation/error messages/comments

Co-authored-by: Kevin Hunter Kesling <[email protected]>
  • Loading branch information
benclifford and khk-globus authored Jan 14, 2025
1 parent f8c9cd1 commit 83a2030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self, interchange_version: str, manager_version: str):
def __str__(self) -> str:
return (
f"Manager version info {self.manager_version} does not match interchange"
f" version info {self.interchange_version}, causing a critical failure"
f" version info {self.interchange_version}"
)


Expand Down

0 comments on commit 83a2030

Please sign in to comment.