Skip to content
Snippets Groups Projects
Commit 0d6c493f authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Moved SecureHardwareException to models package

parent bf617a35
No related branches found
No related tags found
No related merge requests found
......@@ -28,11 +28,7 @@ interface SessionKeyStore {
suspend fun rsaDecryptPassword(): SessionPassword
}
class SecureHardwareException : Exception() {
override val message: String
get() = "OS is not hardware-backed and require secure hardware is enabled."
}
internal class DappSessionKeystore private constructor(
class DappSessionKeystore private constructor(
private val preferences: KeyStorePreferences,
private val dispatcher: CoroutineDispatcher
......
package io.elixxir.dapp.session.model
class SecureHardwareException : Exception() {
override val message: String
get() = "OS is not hardware-backed and require secure hardware is enabled."
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment