patbef-ServiceOutside/ServiceShared/Models/Response/Exception/SupportCodeNeededException.cs

18 lines
509 B
C#
Raw Normal View History

2024-01-29 16:27:34 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Response.Exception
{
/// <summary>
/// This exception will be thrown when support code is necessary to run some action
/// </summary>
public class SupportCodeNeededException : ResponseException
{
public override Types error_type => Types.SupportCodeNeeded;
public override string message => "support code needed";
}
}