blob: 4c465a4fff7ab1fa57379d69ebba11c52d00dc4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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");
}
}
|