We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e5e76 commit 0061793Copy full SHA for 0061793
1 file changed
oauth2_http/java/com/google/auth/oauth2/ImpersonatedCredentials.java
@@ -678,7 +678,7 @@ public AccessToken refreshAccessToken() throws IOException {
678
expirationInstant = Instant.parse(expireTime);
679
}
680
} catch (DateTimeException e) {
681
- throw new IOException("Unparseable date: \"" + expireTime + "\"", e);
+ throw new IOException("Error parsing expireTime: " + expireTime, e);
682
683
return new AccessToken(accessToken, Date.from(expirationInstant));
684
0 commit comments