KeyInvalidatedException.java 192 Bytes
Newer Older
Chok's avatar
Chok committed
1
2
3
4
5
6
7
package de.niklasmerz.cordova.biometric;

class KeyInvalidatedException extends CryptoException {
    KeyInvalidatedException() {
        super(PluginError.BIOMETRIC_NO_SECRET_FOUND);
    }
}