
    R1i                         d Z  G d de      Zy)zFA set of special exceptions that can be thrown by the jplephem libraryc                       e Zd ZdZd Zy)OutOfRangeErrora  One or more time values given were out of range for the ephemeris.

    This exception is thrown if any input times are out of the range of
    times supported by an ephemeris.  It has an extra attribute:

    - `out_of_range_times`: if the input `tdb` of times is an array,
      this provides an array of booleans of the same length where `True`
      means the corresponding date is out of range.

    c                 "    |f| _         || _        y )N)argsout_of_range_times)selfmessager   s      W/home/cursorai/projects/iching/venv/lib/python3.12/site-packages/jplephem/exceptions.py__init__zOutOfRangeError.__init__   s    H	"4    N)__name__
__module____qualname____doc__r
    r   r	   r   r      s    	5r   r   N)r   
ValueErrorr   r   r   r	   <module>r      s    L5j 5r   