// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.ApiServer.Core; /// /// 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"; }