- Overview
- ClockToleranceError
ClockToleranceError
Part of Exceptions in the Python API reference.
Related guidance: reference/exceptions, how-to/troubleshooting.
Runnable examples: preflight.py.
from picogrid_ecn_client import ClockToleranceErrorA valid measurement exceeded a caller-selected absolute offset.
class ClockToleranceError(ClockError): ...Hierarchy: ECNClientError → ClockError → ClockToleranceError
__init__
Section titled “__init__”Record the measurement that exceeded the caller’s tolerance.
def __init__(report: ClockReport) -> NoneParameters
Section titled “Parameters”| Name | Type | Default | Description |
|---|---|---|---|
| report | ClockReport | — | Completed measurement whose absolute offset plus local capture uncertainty exceeded max_offset_seconds. |
report
Section titled “report”Measurement that failed the tolerance check.
reportVersion 0.2.0 · branch main
