mirror of
https://github.com/bitwarden/server.git
synced 2025-06-15 15:30:49 -05:00

* Enable NRT for Core/Jobs files * Enable NRT for Core/HostedServices files * Enable NRT for Core/Exceptions files * Enable NRT for Core/NotificationHub files --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
17 lines
389 B
C#
17 lines
389 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
#nullable enable
|
|
|
|
/// <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)
|
|
{ }
|
|
}
|