15 lines
458 B
Python
15 lines
458 B
Python
from typing import Any
|
|
|
|
class FrozenInstanceError(AttributeError):
|
|
msg: str = ...
|
|
|
|
class AttrsAttributeNotFoundError(ValueError): ...
|
|
class NotAnAttrsClassError(ValueError): ...
|
|
class DefaultAlreadySetError(RuntimeError): ...
|
|
class UnannotatedAttributeError(RuntimeError): ...
|
|
class PythonTooOldError(RuntimeError): ...
|
|
|
|
class NotCallableError(TypeError):
|
|
msg: str = ...
|
|
value: Any = ...
|
|
def __init__(self, msg: str, value: Any) -> None: ...
|