mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 06:33:53 +00:00
* PM-192 Refactor Forwarded email providers to use better patterns and code reuse. * PM-192 fix format
12 lines
270 B
C#
12 lines
270 B
C#
using System;
|
|
namespace Bit.Core.Exceptions
|
|
{
|
|
public class ForwardedEmailInvalidSecretException : Exception
|
|
{
|
|
public ForwardedEmailInvalidSecretException(Exception innerEx)
|
|
: base("Invalid API Secret", innerEx)
|
|
{
|
|
}
|
|
}
|
|
}
|