Source code for aioquic.h3.exceptions

[docs] class H3Error(Exception): """ Base class for HTTP/3 exceptions. """
[docs] class InvalidStreamTypeError(H3Error): """ An action was attempted on an invalid stream type. """
[docs] class NoAvailablePushIDError(H3Error): """ There are no available push IDs left, or push is not supported by the remote party. """