This makes debugging much easier.
InvalidCertificateChainException.java add the following:
public InvalidCertificateChainException(String message, Exception cause) {
super("Invalid certificate chain (" + message + ")! Verify that the keystore you provided was produced according to specs...", cause);
}
PushNotificationManager.java update line 410:
if (e.toString().contains("certificate_unknown")) {
throw new InvalidCertificateChainException(e.getMessage(), e);
}
Original issue reported on code.google.com by j...@jameslow.com on 24 Apr 2013 at 12:28
Original issue reported on code.google.com by
j...@jameslow.com
on 24 Apr 2013 at 12:28