blob: 4c465a4fff7ab1fa57379d69ebba11c52d00dc4a [file] [log] [blame]
package android.security;
/**
* Indicates a communications error with keystore service.
*
* @hide
*/
public class KeyStoreConnectException extends CryptoOperationException {
public KeyStoreConnectException() {
super("Failed to communicate with keystore service");
}
}