Unity instance-related error. Raised when: - INSTANCE_NOT_FOUND: No Unity instance connected - INSTANCE_RELOADING: Unity is in domain reload - INSTANCE_BUSY: Unity is processing another command
| 64 | |
| 65 | |
| 66 | class InstanceError(UnityCLIError): |
| 67 | """Unity instance-related error. |
| 68 | |
| 69 | Raised when: |
| 70 | - INSTANCE_NOT_FOUND: No Unity instance connected |
| 71 | - INSTANCE_RELOADING: Unity is in domain reload |
| 72 | - INSTANCE_BUSY: Unity is processing another command |
| 73 | """ |
| 74 | |
| 75 | pass |
| 76 | |
| 77 | |
| 78 | class TimeoutError(UnityCLIError): |
no outgoing calls
no test coverage detected