You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exceptions.pyi 458B

123456789101112131415
  1. from typing import Any
  2. class FrozenInstanceError(AttributeError):
  3. msg: str = ...
  4. class AttrsAttributeNotFoundError(ValueError): ...
  5. class NotAnAttrsClassError(ValueError): ...
  6. class DefaultAlreadySetError(RuntimeError): ...
  7. class UnannotatedAttributeError(RuntimeError): ...
  8. class PythonTooOldError(RuntimeError): ...
  9. class NotCallableError(TypeError):
  10. msg: str = ...
  11. value: Any = ...
  12. def __init__(self, msg: str, value: Any) -> None: ...