Move MissingPropertyException to common location (#6237)

This commit is contained in:
David Perez
2025-12-05 13:08:39 -06:00
committed by GitHub
parent 127809b8df
commit 8c6782dcb1
11 changed files with 12 additions and 12 deletions

View File

@@ -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")