aspen_pysys.error
Package containing all Pythonic functionality for HYSYS app errors.
class
PysysError(builtins.Exception):
5class PysysError(Exception): 6 """Class that represents an exception from the aspen-pysys package.""" 7 8 def __init__(self, message: str) -> None: 9 self.message = message 10 super().__init__(self.message)
Class that represents an exception from the aspen-pysys package.