Raised when the operation performing on target device is foreseen, e.g. instruction to click outside the screen is definitely meaningless, then the ``InvalidOperationException`` is raised.
| 35 | |
| 36 | |
| 37 | class InvalidOperationException(PocoException): |
| 38 | """ |
| 39 | Raised when the operation performing on target device is foreseen, e.g. instruction to click outside the screen is |
| 40 | definitely meaningless, then the ``InvalidOperationException`` is raised. |
| 41 | """ |
| 42 | |
| 43 | pass |
| 44 | |
| 45 | |
| 46 | class PocoTargetTimeout(PocoException): |