Closed
Description
I expected all exceptions to be captured by gql.exceptions.TransportError
:
from gql.exceptions import TransportError
try:
...
except TransportError as e:
...
But TransportQueryError
extends from Exception
:
gql/gql/transport/exceptions.py
Line 30 in 2827d88
Is this by design?