(cls, message: str, severity: Severity, cause: str, stacktrace: str = '')
| 296 | |
| 297 | @classmethod |
| 298 | def create(cls, message: str, severity: Severity, cause: str, stacktrace: str = '') -> 'LoadResultError': |
| 299 | return cls({'message': message, 'severity': severity, 'cause': cause, 'causeStackTrace': stacktrace}) |
| 300 | |
| 301 | def __str__(self): |
| 302 | return f'{self.message}: {self.cause} ({self.severity})' |
no outgoing calls
no test coverage detected