mirror of
https://github.com/bitwarden/mobile
synced 2026-01-18 16:33:15 +00:00
[PM-3362] Fix auth request approval (#2675)
* [PM-3362] Fix auth request approval * [PM-3362] Add new exception type
This commit is contained in:
12
src/Core/Exceptions/UserAndMasterKeyNullException.cs
Normal file
12
src/Core/Exceptions/UserAndMasterKeyNullException.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
namespace Bit.Core.Exceptions
|
||||
{
|
||||
public class UserAndMasterKeysNullException : Exception
|
||||
{
|
||||
public UserAndMasterKeysNullException()
|
||||
: base("UserKey and MasterKey are null.")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user