14 lines
598 B
C#
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";
|
|
} |