Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jaxtyping / _errors.py
Size: Mime:
class TypeCheckError(TypeError):
    pass


# Not inheriting from TypeError as that gets caught and re-reraised as just a TypeError
# when using typeguard<3.
class AnnotationError(Exception):
    pass


TypeCheckError.__module__ = "jaxtyping"
AnnotationError.__module__ = "jaxtyping"