namespace Galaeth.ApiServer.Constants;
///
/// Api specific error codes.
///
public static class ApiErrorCodes
{
///
/// Validation failed.
///
public const string UnknownError = "unknown-error";
///
/// Illegal method call.
///
public const string UnknownMethod = "unknown-method";
///
/// Illegal method call.
///
public const string IllegalMethod = "illegal-method";
///
/// Validation failed.
///
public const string UnsupportedBody = "unsupported-body";
///
/// Unsupported user agent.
///
public const string UnsupportedUserAgent = "unsupported-user-agent";
}