This repository has been archived on 2023-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
cuipod/Cuipod/StatusCode.cs
Egidijus Lileika 69435b34a5 committing initial code. It was a fun day!
Gemini is very nice and simple <3
2021-02-06 17:59:11 +02:00

26 lines
675 B
C#

namespace Cuipod
{
public enum StatusCode
{
Input = 10,
SensitiveInput = 11,
Success = 20,
RedirectTemp = 30,
RedirectPerm = 31,
FailureTemp = 40,
ServerUnavailable = 41,
CGIError = 42,
ProxyError = 43,
SlowDown = 44,
FailurePerm = 50,
NotFound = 51,
Gone = 52,
ProxyRefused = 53,
BadRequest = 59,
ClientCertRequired = 60,
CertNotAuthorised = 61,
CertNotValid = 62
}
}