We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81aafe commit a8d466fCopy full SHA for a8d466f
oauth2_http/java/com/google/auth/oauth2/ImpersonatedCredentials.java
@@ -353,10 +353,10 @@ public byte[] sign(byte[] toSign) {
353
transportFactory.create(),
354
toSign,
355
ImmutableMap.of("delegates", this.delegates));
356
- } catch (IOException e) {
+ } catch (IOException ex) {
357
// Throwing an IOException would be a breaking change, so wrap it here.
358
// This should not happen for this credential type.
359
- throw new IllegalStateException(e);
+ throw new IllegalStateException("Failed to sign: Error obtaining universe domain", ex);
360
}
361
362
0 commit comments