mirror of
https://github.com/bitwarden/android.git
synced 2026-03-11 12:44:17 -05:00
Move MissingPropertyException to common location (#6237)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.bitwarden.core.data.repository.error
|
||||
|
||||
/**
|
||||
* An exception indicating that a required property was missing.
|
||||
*/
|
||||
class MissingPropertyException(
|
||||
propertyName: String,
|
||||
) : IllegalStateException("Missing the required $propertyName property")
|
||||
Reference in New Issue
Block a user