SwapDude/SWAD.API/Consts/ErrorResources.cs
Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

14 lines
598 B
C#

namespace SWAD.API.Consts;
public static class ErrorResources
{
public const string SomethingWentWrong = "I don't know what but something went wrong";
public const string ApiNotRespond = "Service provider not respond, please try later";
public const string BadRequest = "Oops, request is bad, dude!";
public const string Unknown = "Problem really unknown... I don't even know what else to say";
public const string NotFound = "That service is really dummy, man... Not found that track";
//For exceptions
public const string Unsuccessful = "Request unsuccessful";
}