Documentation
¶
Overview ¶
Package errors defines the structured error codes returned in all Uncord API error responses. Both the server and any future clients import this package as the single source of truth, preventing code drift.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Code ¶
type Code string
Code is a machine-readable error identifier included in every API error response. Clients should match on Code rather than on HTTP status codes or human-readable messages.
const ( Unauthorized Code = "UNAUTHORIZED" // TokenExpired indicates the access token has expired. TokenExpired Code = "TOKEN_EXPIRED" // TokenReused indicates a refresh token was presented after it had // already been consumed, which may signal token theft. TokenReused Code = "TOKEN_REUSED" // InvalidCredentials indicates incorrect email or password. InvalidCredentials Code = "INVALID_CREDENTIALS" // InvalidToken indicates a verification or refresh token is invalid or expired. InvalidToken Code = "INVALID_TOKEN" // MFARequired indicates the account requires multi-factor authentication. MFARequired Code = "MFA_REQUIRED" // MissingPermissions indicates the user lacks a required permission. MissingPermissions Code = "MISSING_PERMISSIONS" // OwnerOnly indicates the action is restricted to the server owner. OwnerOnly Code = "OWNER_ONLY" // RoleHierarchy indicates the action is blocked by role hierarchy rules. RoleHierarchy Code = "ROLE_HIERARCHY" // Banned indicates the user is banned from the server. Banned Code = "BANNED" // UserTimedOut indicates the user is currently timed out. UserTimedOut Code = "USER_TIMED_OUT" // InvalidBody indicates the request body could not be parsed. InvalidBody Code = "INVALID_BODY" // InvalidEmail indicates the email address is malformed. InvalidEmail Code = "INVALID_EMAIL" // InvalidUsername indicates the username does not meet requirements. InvalidUsername Code = "INVALID_USERNAME" // InvalidPassword indicates the password does not meet requirements. InvalidPassword Code = "INVALID_PASSWORD" // DisposableEmail indicates disposable email addresses are not allowed. DisposableEmail Code = "DISPOSABLE_EMAIL" // ValidationError indicates a generic input validation failure. ValidationError Code = "VALIDATION_ERROR" // PayloadTooLarge indicates the request body exceeds the size limit. PayloadTooLarge Code = "PAYLOAD_TOO_LARGE" // ImageDimensionsExceeded indicates the image exceeds dimension limits. ImageDimensionsExceeded Code = "IMAGE_DIMENSIONS_EXCEEDED" // InvalidEmojiName indicates the emoji name is invalid. InvalidEmojiName Code = "INVALID_EMOJI_NAME" // MissingChannelID indicates the required channel ID parameter is absent. MissingChannelID Code = "MISSING_CHANNEL_ID" // InvalidChannelID indicates the channel ID parameter is malformed. InvalidChannelID Code = "INVALID_CHANNEL_ID" // NotFound indicates the requested resource does not exist. NotFound Code = "NOT_FOUND" // UnknownChannel indicates the referenced channel does not exist. UnknownChannel Code = "UNKNOWN_CHANNEL" // UnknownRole indicates the referenced role does not exist. UnknownRole Code = "UNKNOWN_ROLE" // UnknownMessage indicates the referenced message does not exist. UnknownMessage Code = "UNKNOWN_MESSAGE" // UnknownInvite indicates the referenced invite does not exist. UnknownInvite Code = "UNKNOWN_INVITE" // AlreadyExists indicates the resource already exists (e.g. duplicate email). AlreadyExists Code = "ALREADY_EXISTS" // AlreadyMember indicates the user is already a server member. AlreadyMember Code = "ALREADY_MEMBER" // RateLimited indicates the client has exceeded the request rate limit. RateLimited Code = "RATE_LIMITED" // InternalError indicates an unexpected server-side failure. InternalError Code = "INTERNAL_ERROR" SearchUnavailable Code = "SEARCH_UNAVAILABLE" ServiceUnavailable Code = "SERVICE_UNAVAILABLE" )
Click to show internal directories.
Click to hide internal directories.