(b)
| 39 | |
| 40 | @staticmethod |
| 41 | def from_bytes(b): |
| 42 | ray_exception = RayException() |
| 43 | ray_exception.ParseFromString(b) |
| 44 | return RayError.from_ray_exception(ray_exception) |
| 45 | |
| 46 | @staticmethod |
| 47 | def from_ray_exception(ray_exception): |
nothing calls this directly
no test coverage detected