(self)
| 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})' |
| 303 | |
| 304 | def __repr__(self): |
| 305 | return f'<LoadResultError severity={self.severity} message={self.message} cause={self.cause}>' |
nothing calls this directly
no outgoing calls
no test coverage detected