mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
15 lines
371 B
C#
15 lines
371 B
C#
|
|
namespace Bit.Core.Exceptions;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Exception to throw when a requested feature is not yet enabled/available for the requesting context.
|
|||
|
|
/// </summary>
|
|||
|
|
public class FeatureUnavailableException : NotFoundException
|
|||
|
|
{
|
|||
|
|
public FeatureUnavailableException()
|
|||
|
|
{ }
|
|||
|
|
|
|||
|
|
public FeatureUnavailableException(string message)
|
|||
|
|
: base(message)
|
|||
|
|
{ }
|
|||
|
|
}
|