Raised from another language.
| 64 | |
| 65 | @PublicAPI |
| 66 | class CrossLanguageError(RayError): |
| 67 | """Raised from another language.""" |
| 68 | |
| 69 | def __init__(self, ray_exception): |
| 70 | super().__init__( |
| 71 | "An exception raised from {}:\n{}".format( |
| 72 | Language.Name(ray_exception.language), |
| 73 | ray_exception.formatted_exception_string, |
| 74 | ) |
| 75 | ) |
| 76 | |
| 77 | |
| 78 | @PublicAPI |
no outgoing calls
no test coverage detected
searching dependent graphs…