UNPKG

@titanium/identity

Version:

⭐ Axway Amplify modules to use Fingerprint authentication, Keychain Access and Face authentication (iOS) with Appcelerator Titanium SDK

19 lines (16 loc) 334 B
export default class KeychainItemNotFound extends Error { constructor(message) { super(message); this.name = `KeychainItemNotFound`; } toJSON() { return { error: { name: this.name, message: this.message, stacktrace: this.stack.split(`\n`), }, }; } } module.exports = KeychainItemNotFound;