# 공통 에러 common: success: "Successfully processed." unknown: "An error has occurred." bad_request: "Bad request." null_point: "A null value occurred." illegal_argument: "Invalid argument provided." method_not_allowed: "Unsupported HTTP method." not_found: "No information found." insert_fail: "Registration failed." update_fail: "Edit failed." delete_fail: "Deletion failed." payload_too_large : "File size limit exceeded." duplication_code: "This code already exists." duplication_data: "This data already exists." # 네트워크 관련 network: unknown_host: "Request to an unknown host." # SQL 관련 sql: null_value: "Null value violation in SQL query." duplicate_key: "Duplicate key violation in SQL query." data_integrity: "Data integrity violation in SQL query." unknown: "An unknown SQL error occurred." # jwt 인증 관련 jwt: expired: "Login session has expired." signature_invalid: "Invalid token type." insufficient_authentication: "Insufficient authentication information." # 접근 관련 access: denied: "Access is denied." unauthorized: "Unauthorized access." # 사용자 관련 user: signup: id_taken: "The userid is already in use." email_taken: "The email is already in use." success: "Registration completed successfully." login: user_not_found: "User information does not exist." invalid_credentials: "Incorrect password." authentication_required: "Authentication request was denied." account_locked: "Account is locked." account_disabled: "Account is disabled." account_expired: "Account has expired." credentials_expired: "Password has expired." logout: success: "You have been logged out."