namespace Bit.Core.Exceptions; #nullable enable /// /// Exception to throw when a requested feature is not yet enabled/available for the requesting context. /// public class FeatureUnavailableException : NotFoundException { public FeatureUnavailableException() { } public FeatureUnavailableException(string message) : base(message) { } }