diff --git a/stubs/rx/internal/exceptions.pyi b/stubs/rx/internal/exceptions.pyi new file mode 100644 --- /dev/null +++ b/stubs/rx/internal/exceptions.pyi @@ -0,0 +1,26 @@ +# Stubs for rx.internal.exceptions (Python 3) +# +# NOTE: This dynamically typed stub was automatically generated by stubgen. + +from typing import Any, Optional + +class SequenceContainsNoElementsError(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class ArgumentOutOfRangeException(ValueError): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class DisposedException(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class ReEntracyException(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class CompletedException(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class WouldBlockException(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ... + +class InvalidOperationException(Exception): + def __init__(self, msg: Optional[Any] = ...) -> None: ...