mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
458 B
Python
16 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: ...
|