summaryrefslogtreecommitdiff
path: root/jwt/jwks_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'jwt/jwks_client.py')
-rw-r--r--jwt/jwks_client.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/jwt/jwks_client.py b/jwt/jwks_client.py
index e237186..7cecfbf 100644
--- a/jwt/jwks_client.py
+++ b/jwt/jwks_client.py
@@ -6,7 +6,7 @@ from urllib.error import URLError
from .api_jwk import PyJWK, PyJWKSet
from .api_jwt import decode_complete as decode_token
-from .exceptions import PyJWKClientError
+from .exceptions import PyJWKClientConnectionError, PyJWKClientError
from .jwk_set_cache import JWKSetCache
@@ -51,7 +51,9 @@ class PyJWKClient:
with urllib.request.urlopen(r, timeout=self.timeout) as response:
jwk_set = json.load(response)
except (URLError, TimeoutError) as e:
- raise PyJWKClientError(f'Fail to fetch data from the url, err: "{e}"')
+ raise PyJWKClientConnectionError(
+ f'Fail to fetch data from the url, err: "{e}"'
+ )
else:
return jwk_set
finally: