Represents an Exception originating from Ray Data internal code or Ray Core private code paths, as opposed to user code. When Exceptions of this form are raised, it likely indicates a bug in Ray Data or Ray Core.
| 26 | |
| 27 | @DeveloperAPI |
| 28 | class SystemException(Exception): |
| 29 | """Represents an Exception originating from Ray Data internal code |
| 30 | or Ray Core private code paths, as opposed to user code. When |
| 31 | Exceptions of this form are raised, it likely indicates a bug |
| 32 | in Ray Data or Ray Core.""" |
| 33 | |
| 34 | pass |
| 35 | |
| 36 | |
| 37 | @DeveloperAPI |
no outgoing calls
no test coverage detected
searching dependent graphs…