3

Z'íc#ã@sfdZddddgZGdd„deƒZGdd„deeƒZGdd„deƒZGd	d„deƒZGd
d„deƒZdS)z#
Custom exceptions raised by pytz.
ÚUnknownTimeZoneErrorÚInvalidTimeErrorÚAmbiguousTimeErrorÚNonExistentTimeErrorc@seZdZdZdS)ÚErrorz8Base class for all exceptions raised by the pytz libraryN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__©r
r
ú//tmp/pip-build-gk9425m9/pytz/pytz/exceptions.pyrsrc@seZdZdZdS)raøException raised when pytz is passed an unknown timezone.

    >>> isinstance(UnknownTimeZoneError(), LookupError)
    True

    This class is actually a subclass of KeyError to provide backwards
    compatibility with code relying on the undocumented behavior of earlier
    pytz releases.

    >>> isinstance(UnknownTimeZoneError(), KeyError)
    True

    And also a subclass of pytz.exceptions.Error, as are other pytz
    exceptions.

    >>> isinstance(UnknownTimeZoneError(), Error)
    True

    N)rrrr	r
r
r
rrsc@seZdZdZdS)rz'Base class for invalid time exceptions.N)rrrr	r
r
r
rr&sc@seZdZdZdS)raXException raised when attempting to create an ambiguous wallclock time.

    At the end of a DST transition period, a particular wallclock time will
    occur twice (once before the clocks are set back, once after). Both
    possibilities may be correct, unless further information is supplied.

    See DstTzInfo.normalize() for more info
    N)rrrr	r
r
r
rr*sc@seZdZdZdS)rzÑException raised when attempting to create a wallclock time that
    cannot exist.

    At the start of a DST transition period, the wallclock time jumps forward.
    The instants jumped over never occur.
    N)rrrr	r
r
r
rr5sN)	r	Ú__all__Ú	ExceptionrÚKeyErrorrrrrr
r
r
rÚ<module>s