summaryrefslogtreecommitdiffstats
path: root/keystore/java/android/security/KeymasterException.java
blob: 4ff71152f8347df2f8afb2e993f3469a9f44d8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package android.security;

/**
 * Keymaster exception.
 *
 * @hide
 */
public class KeymasterException extends Exception {

    public KeymasterException(String message) {
        super(message);
    }
}