MCPcopy Create free account
hub / github.com/bloomberg/pystack / __init__

Method __init__

src/pystack/errors.py:89–98  ·  view source on GitHub ↗
(
        self,
        *args: Any,
        corefile: Optional[pathlib.Path] = None,
        pid: Optional[int] = None,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

87
88class EngineError(PystackError):
89 def __init__(
90 self,
91 *args: Any,
92 corefile: Optional[pathlib.Path] = None,
93 pid: Optional[int] = None,
94 **kwargs: Any,
95 ) -> None:
96 self.corefile = corefile
97 self.pid = pid
98 super().__init__(*args, **kwargs)
99
100 def __str__(self) -> str:
101 message, *_ = self.args

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected