Raised when a database operation times out, exceeding the $maxTimeMS set in the query or command option. .. note:: Requires server version **>= 2.6.0** .. versionadded:: 2.7
| 230 | |
| 231 | |
| 232 | class ExecutionTimeout(OperationFailure): |
| 233 | """Raised when a database operation times out, exceeding the $maxTimeMS |
| 234 | set in the query or command option. |
| 235 | |
| 236 | .. note:: Requires server version **>= 2.6.0** |
| 237 | |
| 238 | .. versionadded:: 2.7 |
| 239 | """ |
| 240 | |
| 241 | @property |
| 242 | def timeout(self) -> bool: |
| 243 | return True |
| 244 | |
| 245 | |
| 246 | class WriteConcernError(OperationFailure): |
no outgoing calls
no test coverage detected