mirror of
https://wiilab.wiimart.org/wiimart/WiiMart-github-io
synced 2025-11-06 15:30:18 +01:00
Edit error.js
This commit is contained in:
parent
7b7fc71161
commit
d450788342
349
meta/error.js
349
meta/error.js
@ -1,15 +1,11 @@
|
|||||||
const errorCodes = {
|
const errorCodes = {
|
||||||
"201005": "Invalid public key type in certificate",
|
// Title Downloading errors start
|
||||||
"201009": "Read failure (short read)",
|
|
||||||
"201010": "Write failure (short write)",
|
|
||||||
"201012": "Invalid signature type (for signed blobs)",
|
"201012": "Invalid signature type (for signed blobs)",
|
||||||
"201016": "Maximum amount of handles exceeded (3 handles, as there are only 3 contexts)",
|
"201016": "Maximum amount of handles exceeded (3 handles, as there are only 3 contexts)",
|
||||||
"201017": "Invalid arguments",
|
"201017": "Invalid arguments",
|
||||||
"201020": "Device ID mismatch. Returned by ES_ImportTicket if the ticket is personalised and the device ID from the ticket mismatches with the actual ID.",
|
"201020": "Device ID mismatch. Returned by ES_ImportTicket if the ticket is personalised and the device ID from the ticket mismatches with the actual ID.",
|
||||||
"201022": "Imported content hash does not match with the hash from the TMD. Returned by ES_ImportContentEnd and ES_ImportBoot.",
|
"201022": "Imported content hash does not match with the hash from the TMD. Returned by ES_ImportContentEnd and ES_ImportBoot.",
|
||||||
"201024": "Memory allocation failure",
|
"201024": "Memory allocation failure",
|
||||||
"201026": "Incorrect access rights (according to the TMD)",
|
|
||||||
"201027": "Issuer not found in the certificate chain",
|
|
||||||
"201028": "Ticket not found",
|
"201028": "Ticket not found",
|
||||||
"201029": "Invalid ticket. This is returned if the common key field contains an invalid value (anything other than 0 or 1). This is also returned from ES_LaunchTitle if the title ID contained in the ticket does not match the TMD title ID.",
|
"201029": "Invalid ticket. This is returned if the common key field contains an invalid value (anything other than 0 or 1). This is also returned from ES_LaunchTitle if the title ID contained in the ticket does not match the TMD title ID.",
|
||||||
"201031": "During LaunchTitle/ImportTitle: installed boot2 version is too old. During ImportBoot: downgrades are not allowed.",
|
"201031": "During LaunchTitle/ImportTitle: installed boot2 version is too old. During ImportBoot: downgrades are not allowed.",
|
||||||
@ -21,6 +17,74 @@ const errorCodes = {
|
|||||||
"201037": "Installed number of contents doesn't match TMD (only for the system menu [check])",
|
"201037": "Installed number of contents doesn't match TMD (only for the system menu [check])",
|
||||||
"201039": "Returned by DI as an ES error code when TMD not supplied for disc/nand game",
|
"201039": "Returned by DI as an ES error code when TMD not supplied for disc/nand game",
|
||||||
"202000": "Permission denied (returned when accessing an object for which the caller has no permission)",
|
"202000": "Permission denied (returned when accessing an object for which the caller has no permission)",
|
||||||
|
// Title downloading errors end
|
||||||
|
|
||||||
|
// SD Card errors start
|
||||||
|
"201009": "Read failure (short read)",
|
||||||
|
"201010": "Write failure (short write)",
|
||||||
|
"209631": "Invalid SD Card",
|
||||||
|
"209632": "The SD Card is inserted(?)",
|
||||||
|
"209633": "The SD Card is not inserted",
|
||||||
|
"209634": "Unknown SD Card cluster (not 32k)",
|
||||||
|
"209635": "Incorrect SD Card alignment",
|
||||||
|
"209636": "Incorrect SD Card Device",
|
||||||
|
"209637": "The title's ticket is not present on the SD",
|
||||||
|
"209638": "SDCARD_ERROR_ACCESS",
|
||||||
|
"209639": "SDCARD_ERROR_CANCELLED (cancelBackupToSDCard successful?)",
|
||||||
|
"209640": "SDCARD_ERROR_CONTENT_INVALID (Banner is not found)",
|
||||||
|
"209641": "SDCARD_ERROR_MAXFD (?)",
|
||||||
|
"209642": "The SD Card is out of memory",
|
||||||
|
"209643": "The SD Card is corrupted (NAND_CORRUPT ERROR (Serious error))",
|
||||||
|
"209644": "SDCARD_ERROR_ECC_CRIT: Critical error(?)",
|
||||||
|
"209645": "SD Authentication error(?)",
|
||||||
|
"209646": "Fatal error with the SD Card",
|
||||||
|
"209647": "Unknown SD Card",
|
||||||
|
"209648": "The SD Card is not inserted",
|
||||||
|
"209649": "The SD Card is not supported",
|
||||||
|
"209650": "SD Card File system is broken",
|
||||||
|
"209651": "SD is write protected",
|
||||||
|
"209652": "No space left in the SD",
|
||||||
|
"209653": "Other SD error",
|
||||||
|
"209654": "Unknown SD Error",
|
||||||
|
"209655": "SDCARD_ERROR_WANT_OF_CAPACITY (SD full)",
|
||||||
|
"209656": "SDCARD_ERROR_EXIST_CHECK_SOFT (title already present on SD)",
|
||||||
|
"209657": "SDCARD_ERROR_EXCEPTION_STATE (Illegal statement and cancelBackupToSDCard error)",
|
||||||
|
"209661": "EXIST_CHECK_SOFT_NAND",
|
||||||
|
"209662": "errChannel",
|
||||||
|
"209663": "errInodes",
|
||||||
|
"209664": "SD Backup timeout in B-10",
|
||||||
|
"209665": "JournalFlag error in B-10",
|
||||||
|
// SD Card errors end
|
||||||
|
|
||||||
|
// Channel errors start
|
||||||
|
"206674": "Unexpected ECLib error",
|
||||||
|
"201005": "Invalid public key type in certificate",
|
||||||
|
"201026": "Incorrect access rights (according to the TMD)",
|
||||||
|
"201027": "Issuer not found in the certificate chain",
|
||||||
|
"209622": "SSL CA unknown / not included in channel",
|
||||||
|
"209593": "Access denied by Opera's domain filter",
|
||||||
|
"209800": "No DNS Entry for oss-auth.shop.wii.com",
|
||||||
|
"206671": "Invalid/Wrong Wii Shop title ID",
|
||||||
|
"206672": "No title info (Wii Shop)",
|
||||||
|
"220000": "Connection failed",
|
||||||
|
"220001": "Unknown protocol",
|
||||||
|
"220002": "Out of memory",
|
||||||
|
"220003": "The requested URL was filtered by Opera's filter",
|
||||||
|
"220101": "Allocation error",
|
||||||
|
"220102": "Unsupported file",
|
||||||
|
"220103": "Empty file",
|
||||||
|
"220104": "Invalid file",
|
||||||
|
"220105": "Javascript error",
|
||||||
|
"220106": "Plugin error",
|
||||||
|
"220201": "Not found",
|
||||||
|
"220202": "Connection refused",
|
||||||
|
"220003": "Filtered URL",
|
||||||
|
"220000": "Connection Failed",
|
||||||
|
"220002": "Out of memory",
|
||||||
|
"220001": "Unknown protocol",
|
||||||
|
// Channel errors end
|
||||||
|
|
||||||
|
// IOSC Errors start
|
||||||
"202001": "IOSC_EEXIST",
|
"202001": "IOSC_EEXIST",
|
||||||
"202003": "IOSC_EMAX",
|
"202003": "IOSC_EMAX",
|
||||||
"202004": "IOSC_ENOENT",
|
"202004": "IOSC_ENOENT",
|
||||||
@ -31,17 +95,21 @@ const errorCodes = {
|
|||||||
"202009": "IOSC_INVALID_VERSION",
|
"202009": "IOSC_INVALID_VERSION",
|
||||||
"202010": "IOSC_INVALID_SIGNER",
|
"202010": "IOSC_INVALID_SIGNER",
|
||||||
"202011": "IOSC_FAIL_CHECKVALUE",
|
"202011": "IOSC_FAIL_CHECKVALUE",
|
||||||
|
// IOSC Errors end
|
||||||
|
|
||||||
"202012": "Internal failure",
|
"202012": "Internal failure",
|
||||||
"202013": "Memory allocation failure. Known to be returned when the keyring is full (contains 0x20 keys)",
|
"202013": "Memory allocation failure. Known to be returned when the keyring is full (contains 0x20 keys)",
|
||||||
"202014": "Invalid size",
|
"202014": "Invalid size",
|
||||||
"202015": "Invalid address",
|
"202015": "Invalid address",
|
||||||
"202016": "Unaligned data",
|
"202016": "Unaligned data",
|
||||||
|
|
||||||
|
// EC Errors start
|
||||||
"204000": "EC_ERROR_OK: No error",
|
"204000": "EC_ERROR_OK: No error",
|
||||||
"204001": "EC_ERROR_FAIL: Generic error",
|
"204001": "EC_ERROR_FAIL: Generic error",
|
||||||
"204002": "EC_ERROR_NOT_SUPPORTED: Feature not implemented",
|
"204002": "EC_ERROR_NOT_SUPPORTED: Feature not implemented",
|
||||||
"204003": "EC_ERROR_INSUFFICIENT_RESOURCE",
|
"204003": "EC_ERROR_INSUFFICIENT_RESOURCE",
|
||||||
"204004": "EC_ERROR_INVALID",
|
"204004": "EC_ERROR_INVALID",
|
||||||
"204005": "EC_ERROR_NOMEM ",
|
"204005": "EC_ERROR_NOMEM",
|
||||||
"204006": "EC_ERROR_NOT_FOUND",
|
"204006": "EC_ERROR_NOT_FOUND",
|
||||||
"204007": "EC_ERROR_NOT_BUSY: no active async operation",
|
"204007": "EC_ERROR_NOT_BUSY: no active async operation",
|
||||||
"204008": "EC_ERROR_BUSY",
|
"204008": "EC_ERROR_BUSY",
|
||||||
@ -85,6 +153,18 @@ const errorCodes = {
|
|||||||
"204079": "EC_ERROR_ALREADY_OWN: Attempt purchase already owned item",
|
"204079": "EC_ERROR_ALREADY_OWN: Attempt purchase already owned item",
|
||||||
"204080": "EC_ERROR_SHOP_SETUP: Shop channel setup not done or cleared",
|
"204080": "EC_ERROR_SHOP_SETUP: Shop channel setup not done or cleared",
|
||||||
"204081": "EC_ERROR_INSUFFICIENT_FUNDS: Not enough funds to purchase the item",
|
"204081": "EC_ERROR_INSUFFICIENT_FUNDS: Not enough funds to purchase the item",
|
||||||
|
|
||||||
|
"204992": "EC_ERROR_NHTTP_CRX",
|
||||||
|
"204993": "EC_ERROR_NHTTP_AHF",
|
||||||
|
"204994": "EC_ERROR_NHTTP_SCCD",
|
||||||
|
"204995": "EC_ERROR_NHTTP_SRCD",
|
||||||
|
"204996": "EC_ERROR_NHTTP_SVO",
|
||||||
|
"204997": "EC_ERROR_NHTTP_PDE",
|
||||||
|
"204998": "EC_ERROR_NHTTP_PDR",
|
||||||
|
"204999": "EC_ERROR_NHTTP_SRA",
|
||||||
|
// EC Errors end
|
||||||
|
|
||||||
|
// Standard HTTP errors start
|
||||||
"204501": "HTTP 201 Created",
|
"204501": "HTTP 201 Created",
|
||||||
"204502": "HTTP 202 Accepted",
|
"204502": "HTTP 202 Accepted",
|
||||||
"204503": "HTTP 203 Non-Authoritative Information",
|
"204503": "HTTP 203 Non-Authoritative Information",
|
||||||
@ -102,8 +182,8 @@ const errorCodes = {
|
|||||||
"204701": "HTTP 401 Unauthorized",
|
"204701": "HTTP 401 Unauthorized",
|
||||||
"204702": "HTTP 402 Payment Required",
|
"204702": "HTTP 402 Payment Required",
|
||||||
"204703": "HTTP 403 Forbidden",
|
"204703": "HTTP 403 Forbidden",
|
||||||
"204704": "HTTP 404 - Not Found",
|
|
||||||
"204704": "HTTP 404 Not Found",
|
"204704": "HTTP 404 Not Found",
|
||||||
|
"209531": "HTTP 404 Not Found",
|
||||||
"204705": "HTTP 405 Method Not Allowed",
|
"204705": "HTTP 405 Method Not Allowed",
|
||||||
"204706": "HTTP 406 Not Acceptable",
|
"204706": "HTTP 406 Not Acceptable",
|
||||||
"204707": "HTTP 407 Proxy Authentication Required",
|
"204707": "HTTP 407 Proxy Authentication Required",
|
||||||
@ -117,7 +197,7 @@ const errorCodes = {
|
|||||||
"204715": "HTTP 415 Unsupported Media Type",
|
"204715": "HTTP 415 Unsupported Media Type",
|
||||||
"204716": "HTTP 416 Range Not Satisfiable",
|
"204716": "HTTP 416 Range Not Satisfiable",
|
||||||
"204717": "HTTP 417 Expectation Failed",
|
"204717": "HTTP 417 Expectation Failed",
|
||||||
"204800": "HTTP 500 - Internal Server Error",
|
"209527": "HTTP 418 I'm a Teapot (https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/418)",
|
||||||
"204800": "HTTP 500 Internal Server Error",
|
"204800": "HTTP 500 Internal Server Error",
|
||||||
"204801": "HTTP 501 Not Implemented",
|
"204801": "HTTP 501 Not Implemented",
|
||||||
"204802": "HTTP 502 Bad Gateway",
|
"204802": "HTTP 502 Bad Gateway",
|
||||||
@ -125,21 +205,71 @@ const errorCodes = {
|
|||||||
"204804": "HTTP 504 Gateway Timeout",
|
"204804": "HTTP 504 Gateway Timeout",
|
||||||
"204805": "HTTP 505 HTTP Version Not Supported",
|
"204805": "HTTP 505 HTTP Version Not Supported",
|
||||||
"204811": "HTTP 511 Network Authentication Required",
|
"204811": "HTTP 511 Network Authentication Required",
|
||||||
"204901": "NHTTP_ERROR_ALLOC",
|
// Standard HTTP errors end
|
||||||
"204902": "NHTTP_ERROR_TOOMANYREQ",
|
|
||||||
"204903": "NHTTP_ERROR_SOCKET",
|
// NHTTP Errors start
|
||||||
"204904": "NHTTP_ERROR_DNS",
|
// from TWLSDK
|
||||||
"204905": "NHTTP_ERROR_CONNECT",
|
"204900": "NHTTP_ERROR_NONE: No NHTTP error.",
|
||||||
"204906": "NHTTP_ERROR_BUFFULL",
|
"204901": "NHTTP_ERROR_ALLOC: Allocation has failed.",
|
||||||
"204907": "NHTTP_ERROR_HTTPPARSE",
|
"204902": "NHTTP_ERROR_TOOMANYREQ: Too many requests (This error never occurs).",
|
||||||
"204908": "NHTTP_ERROR_CANCELED",
|
"204903": "NHTTP_ERROR_SOCKET: Socket error.",
|
||||||
"204909": "NHTTP_ERROR_REVOLUTIONSDK",
|
"204904": "NHTTP_ERROR_DNS: DNS resolution failed.",
|
||||||
"204910": "NHTTP_ERROR_REVOLUTIONWIFI",
|
"204905": "NHTTP_ERROR_CONNECT: Connection failure (Returned if the DNS has been resolved, but communication is interrupted before the connection can be made to the requested server's URL).",
|
||||||
"204911": "NHTTP_ERROR_UNKNOWN",
|
"204906": "NHTTP_ERROR_BUFFULL: The receive buffer is full.",
|
||||||
"204912": "NHTTP_ERROR_DNS_PROXY",
|
"204907": "NHTTP_ERROR_HTTPPARSE: HTTP header parsing failed.",
|
||||||
"204913": "NHTTP_ERROR_CONNECT_PROXY",
|
"204908": "NHTTP_ERROR_CANCELED: The request was cancelled.",
|
||||||
"204914": "NHTTP_ERROR_SSL",
|
"204909": "NHTTP_ERROR_REVOLUTIONSDK: NHTTP_Thread generation failed.",
|
||||||
|
"204910": "NHTTP_ERROR_REVOLUTIONWIFI: Generated when there is a problem with sending, receiving, or socket termination. Also returned when communication is blocked during sending, receiving, or termination.",
|
||||||
|
"204911": "NHTTP_ERROR_UNKNOWN: An abnormal/unknown value has been set to a method by NHTTP_CreateConnection.",
|
||||||
|
"204912": "NHTTP_ERROR_DNS_PROXY: DNS resolution failed for the proxy server.",
|
||||||
|
"204913": "NHTTP_ERROR_CONNECT_PROXY: Connection with the proxy server failed.",
|
||||||
|
"204914": "NHTTP_ERROR_SSL: SSL communications failed.",
|
||||||
|
"204915": "NHTTP_ERROR_BUSY: Indicates that a request is currently running.",
|
||||||
|
"204916": "NHTTP_ERROR_ROOTCA: Root Certificate Authority (CA) configuration failed.",
|
||||||
|
"204917": "NHTTP_ERROR_CLIENTCA: Client certificate configuration failed.",
|
||||||
|
// from TWLSDK
|
||||||
|
// NHTTP Errors end
|
||||||
|
|
||||||
|
// WS Errors stard
|
||||||
|
// IAS
|
||||||
|
"205900": "Generic IAS (IdentityAuthenticationSOAP) error.",
|
||||||
|
"206400": "Generic IAS (IdentityAuthenticationSOAP) error.",
|
||||||
"204927": "IAS Unknown issuer of device cert",
|
"204927": "IAS Unknown issuer of device cert",
|
||||||
|
// ECS
|
||||||
|
"205600": "Generic ECS (ECommerceSOAP) error.",
|
||||||
|
"205646": "Unable to send present (ECS Gift)",
|
||||||
|
"205672": "ECS Account mismatch",
|
||||||
|
"205625": "ECS Gift error",
|
||||||
|
"205626": "Unable to send present (ECS gift error)",
|
||||||
|
"205621": "Unknown error (possibly ECS gift error?)",
|
||||||
|
// CAS
|
||||||
|
"205627": "Can't buy DLC for a title you don't own.",
|
||||||
|
|
||||||
|
// Misc (ETS, PAS, OSS)
|
||||||
|
"205800": "Generic PAS (PaymentAuthorizationSOAP) error.",
|
||||||
|
"205825": "Generic PAS (PaymentAuthorizationSOAP) error. (PAS_ERROR_CODE)",
|
||||||
|
"205700": "Generic ETS (ETicketSOAP) error.",
|
||||||
|
|
||||||
|
// Shop errors start
|
||||||
|
"206600": "Generic OSS error.",
|
||||||
|
"206652": "Wrong PIN three times (parental controls)",
|
||||||
|
"206650": "Wrong PIN (parental controls)",
|
||||||
|
"209620": "Some JS files couldn't be loaded (shopErrCheck)",
|
||||||
|
"209552": "Timeout occurred between client and server",
|
||||||
|
"209553": "Timeout occurred between client and server",
|
||||||
|
"209554": "Timeout occurred between client and server",
|
||||||
|
"209555": "Timeout occurred between client and server",
|
||||||
|
"209556": "Timeout occurred between client and server",
|
||||||
|
"209557": "Timeout occurred between client and server",
|
||||||
|
"209600": "Connection Timeout, the shop took too long to load",
|
||||||
|
"209601": "Connection Timeout, the shop took too long to load",
|
||||||
|
"205826": "Server under heavy load",
|
||||||
|
"205829": "Server under heavy load",
|
||||||
|
"205969": "Server under heavy load",
|
||||||
|
"206601": "Authentication error, missing required parameters",
|
||||||
|
// Shop errors end
|
||||||
|
|
||||||
|
// SSL Errors start
|
||||||
"204961": "SSL_EFAILED",
|
"204961": "SSL_EFAILED",
|
||||||
"204962": "SSL_EWANT_READ",
|
"204962": "SSL_EWANT_READ",
|
||||||
"204963": "SSL_EWANT_WRITE",
|
"204963": "SSL_EWANT_WRITE",
|
||||||
@ -152,90 +282,58 @@ const errorCodes = {
|
|||||||
"204970": "SSL_EVERIFY_CHAIN",
|
"204970": "SSL_EVERIFY_CHAIN",
|
||||||
"204971": "SSL_EVERIFY_DATE",
|
"204971": "SSL_EVERIFY_DATE",
|
||||||
"204972": "SSL_EGET_SERVER_CERT",
|
"204972": "SSL_EGET_SERVER_CERT",
|
||||||
"204992": "EC_ERROR_NHTTP_CRX",
|
// SSL errors end
|
||||||
"204993": "EC_ERROR_NHTTP_AHF",
|
|
||||||
"204994": "EC_ERROR_NHTTP_SCCD",
|
// Console errors start
|
||||||
"204995": "EC_ERROR_NHTTP_SRCD",
|
|
||||||
"204996": "EC_ERROR_NHTTP_SVO",
|
|
||||||
"204997": "EC_ERROR_NHTTP_PDE",
|
|
||||||
"204998": "EC_ERROR_NHTTP_PDR",
|
|
||||||
"204999": "EC_ERROR_NHTTP_SRA",
|
|
||||||
"205007": "Invalid NAND Dump (Dolphin only)",
|
"205007": "Invalid NAND Dump (Dolphin only)",
|
||||||
"051330": "Internet connection error. The Wii needs a 2.4gHz signal with 802.11b/g/n enabled, and the security set to WPA2-PSK (AES). The channel must also either be set to auto or be less than 12.",
|
"205540": "This software doesn't work in the vWii",
|
||||||
|
// Console errors end
|
||||||
|
|
||||||
|
// Account errors start
|
||||||
"205104": "Could not retrieve points balance",
|
"205104": "Could not retrieve points balance",
|
||||||
"205114": "Could not convert points balance to integer",
|
"205114": "Could not convert points balance to integer",
|
||||||
"205124": "Cannot find sender friend code",
|
"205124": "Cannot find sender friend code",
|
||||||
"205177": "User already exists in database",
|
"205177": "User already exists in database",
|
||||||
"205540": "This software doesn't work in the vWii",
|
|
||||||
"205617": "Wii Points card code invalid",
|
|
||||||
"205618": "Wii Points card is for another country",
|
|
||||||
"205621": "Unknown error (possibly ECS gift error?)",
|
|
||||||
"205623": "Trial period for that title expired, you can't download that again",
|
"205623": "Trial period for that title expired, you can't download that again",
|
||||||
"205600": "Generic ECS (ECommerceSOAP) error.",
|
|
||||||
"205700": "Generic ETS (ETicket Services?) error.",
|
|
||||||
"205800": "Generic PAS (Points Account System?) error.",
|
|
||||||
"205825": "Generic PAS (Points Account System?) error. (PAS_ERROR_CODE)",
|
|
||||||
"205900": "Generic IAS (IdentityAuthenticationSOAP) error.",
|
|
||||||
"206400": "Generic IAS (IdentityAuthenticationSOAP) error.",
|
|
||||||
"206600": "Generic OSS error.",
|
|
||||||
"205625": "ECS Gift error",
|
|
||||||
"205626": "Unable to send present (ECS gift error)",
|
|
||||||
"205627": "Can't buy DLC for a title you don't own.",
|
|
||||||
"205642": "Unknown error",
|
|
||||||
"205643": "Unknown error",
|
|
||||||
"205644": "Credit cards can't be used on this console.",
|
"205644": "Credit cards can't be used on this console.",
|
||||||
"205645": "Issue with your DSi shop account?",
|
|
||||||
"205646": "Unable to send present (ECS Gift)",
|
|
||||||
"205672": "ECS Account mismatch",
|
|
||||||
"205800": "Wii Points Card error",
|
|
||||||
"205810": "You don't have enough Wii Points / Error while redeeming your download ticket",
|
"205810": "You don't have enough Wii Points / Error while redeeming your download ticket",
|
||||||
"205811": "Wii Points card expired",
|
|
||||||
"205815": "Wii Points Card was already used",
|
|
||||||
"205816": "Some error with the Wii Points Card",
|
|
||||||
"205818": "This card number can only be used for a specific title, it is not a Wii Points Card.",
|
"205818": "This card number can only be used for a specific title, it is not a Wii Points Card.",
|
||||||
"205819": "Wii Points Card code is invalid",
|
|
||||||
"205826": "Server under heavy load",
|
|
||||||
"205829": "Server under heavy load",
|
|
||||||
"205830": "Wii Points Card code is invalid",
|
|
||||||
"205831": "Wii Points Card is for another country",
|
|
||||||
"205901": "Wii number invalid!",
|
"205901": "Wii number invalid!",
|
||||||
"205903": "Unknown error",
|
|
||||||
"205906": "Problem with your online account",
|
"205906": "Problem with your online account",
|
||||||
"205928": "Unknown error",
|
"205968": "Invalid friend code",
|
||||||
"205942": "Maintenance. Login not possible",
|
"206668": "Happens when current points count + new points would exceed the wii points limit",
|
||||||
"205958": "Unknown error",
|
"206670": "Invalid friend code",
|
||||||
"205968": "Bad device code",
|
"206673": "Invalid registration status",
|
||||||
"205969": "Server under heavy load",
|
// Account errors end
|
||||||
"206112": "The free title promotion has ended (ICR_END)",
|
|
||||||
"206401": "Invalid characters in nick or password",
|
// Wii Points/Download ticket redeem errors start (these should never occur)
|
||||||
"206499": "Maintenance. Login not possible",
|
|
||||||
"206601": "Authentication error, missing required parameters",
|
|
||||||
"206602": "Error while entering Wii Points Card code. Try again later.",
|
"206602": "Error while entering Wii Points Card code. Try again later.",
|
||||||
|
"206669": "Wii Points card invalid",
|
||||||
"206603": "Unable to confirm credit card information",
|
"206603": "Unable to confirm credit card information",
|
||||||
"206607": "Error while retrieving the served content",
|
"206607": "Error while retrieving the served content",
|
||||||
"206608": "Error redeeming Wii Download Ticket",
|
"206608": "Error redeeming Wii Download Ticket",
|
||||||
|
"205800": "Wii Points Card error",
|
||||||
|
"205831": "Wii Points Card is for another country",
|
||||||
|
"205617": "Wii Points card code invalid",
|
||||||
|
"205618": "Wii Points card is for another country",
|
||||||
"206610": "Wii download ticket expired",
|
"206610": "Wii download ticket expired",
|
||||||
"206611": "Wii download ticket invalid",
|
"206611": "Wii download ticket invalid",
|
||||||
"206612": "This Wii download ticket can't be used in your country",
|
"206612": "This Wii download ticket can't be used in your country",
|
||||||
"206613": "No software available for this download ticket. May be caused by parental controls.",
|
"206613": "No software available for this download ticket. May be caused by parental controls.",
|
||||||
"206650": "Wrong PIN (parental controls)",
|
"206651": "Mistake while entering the console's serial number",
|
||||||
"206651": "Mistake while entering the wii serial number",
|
|
||||||
"206652": "Wrong PIN three times (parental controls)",
|
|
||||||
"206653": "Nickname or password wrong",
|
"206653": "Nickname or password wrong",
|
||||||
"206660": "No progress was made in the last operation",
|
"206660": "No progress was made in the last operation",
|
||||||
"206661": "Credit card type invalid",
|
"205811": "Wii Points card expired",
|
||||||
"206662": "Credit card number invalid",
|
"205815": "Wii Points Card was already used",
|
||||||
|
"205816": "Some error with the Wii Points Card",
|
||||||
"206663": "An operation is in progress",
|
"206663": "An operation is in progress",
|
||||||
"206664": "No security code was provided",
|
"206664": "No security code was provided",
|
||||||
"206667": "Wii download ticket invalid",
|
"206667": "Wii download ticket invalid",
|
||||||
"206668": "Happens when current points count + new points would exceed the wii points limit",
|
"205830": "Wii Points Card code is invalid",
|
||||||
"206669": "Wii Points card invalid",
|
"205819": "Wii Points Card code is invalid",
|
||||||
"206670": "Invalid friend code",
|
// Wii Points/Download ticket redeem errors end
|
||||||
"206671": "Invalid/Wrong Wii Shop title ID",
|
|
||||||
"206672": "No title info (Wii Shop)",
|
// Credit card errors start (these should never occur)
|
||||||
"206673": "Invalid registration status",
|
|
||||||
"206674": "Unexpected eclib error",
|
|
||||||
"206699": "Try again later",
|
|
||||||
"208000": "You have entered the wrong state",
|
"208000": "You have entered the wrong state",
|
||||||
"208001": "Unable to process for credit cards (some kind of blacklist?)",
|
"208001": "Unable to process for credit cards (some kind of blacklist?)",
|
||||||
"208002": "Billing address invalid",
|
"208002": "Billing address invalid",
|
||||||
@ -260,72 +358,31 @@ const errorCodes = {
|
|||||||
"208022": "Refund was already processed",
|
"208022": "Refund was already processed",
|
||||||
"208023": "Refund error",
|
"208023": "Refund error",
|
||||||
"208025": "Empty security code",
|
"208025": "Empty security code",
|
||||||
"209531": "HTTP 404 Not Found",
|
"206661": "Credit card type invalid",
|
||||||
"209552": "Timeout occurred between client and server",
|
"206662": "Credit card number invalid",
|
||||||
"209553": "Timeout occurred between client and server",
|
// Credit card errors end
|
||||||
"209554": "Timeout occurred between client and server",
|
|
||||||
"209555": "Timeout occurred between client and server",
|
|
||||||
"209556": "Timeout occurred between client and server",
|
|
||||||
"209557": "Timeout occurred between client and server",
|
|
||||||
"209593": "Access denied by Opera's Wii Shop domain filter",
|
|
||||||
"209600": "Connection Timeout, the shop took too long to load",
|
|
||||||
"209601": "Connection Timeout, the shop took too long to load",
|
|
||||||
"209620": "Some JS files couldn't be loaded (shopErrCheck)",
|
|
||||||
"209622": "SSL CA unknown / not included in channel",
|
|
||||||
"209622": "SSL CA unknown / not included in channel",
|
|
||||||
"209631": "Invalid SD Card",
|
|
||||||
"209632": "The SD Card is inserted(?)",
|
|
||||||
"209633": "The SD Card is not inserted",
|
|
||||||
"209634": "Unknown SD Card cluster (not 32k)",
|
|
||||||
"209635": "Incorrect SD Card alignment",
|
|
||||||
"209636": "Incorrect SD Card Device",
|
|
||||||
"209637": "The title's ticket is not present on the SD",
|
|
||||||
"209638": "SDCARD_ERROR_ACCESS",
|
|
||||||
"209639": "SDCARD_ERROR_CANCELLED (cancelBackupToSDCard successful?)",
|
|
||||||
"209640": "SDCARD_ERROR_CONTENT_INVALID (Banner is not found)",
|
|
||||||
"209641": "SDCARD_ERROR_MAXFD (?)",
|
|
||||||
"209642": "The SD Card is out of memory",
|
|
||||||
"209643": "The SD Card is corrupted (NAND_CORRUPT ERROR (Serious error))",
|
|
||||||
"209644": "SDCARD_ERROR_ECC_CRIT (?)",
|
|
||||||
"209645": "SD Authentication error(?)",
|
|
||||||
"209646": "Fatal error with the SD Card",
|
|
||||||
"209647": "Unknown SD Card",
|
|
||||||
"209648": "The SD Card is not inserted",
|
|
||||||
"209649": "The SD Card is not supported",
|
|
||||||
"209650": "SD Card File system is broken",
|
|
||||||
"209651": "SD is write protected",
|
|
||||||
"209652": "No space left in the SD",
|
|
||||||
"209653": "Other SD error",
|
|
||||||
"209654": "Unknown SD Error",
|
|
||||||
"209655": "SDCARD_ERROR_WANT_OF_CAPACITY (SD full)",
|
|
||||||
"209656": "SDCARD_ERROR_EXIST_CHECK_SOFT (title already present on SD)",
|
|
||||||
"209657": "SDCARD_ERROR_EXCEPTION_STATE (Illegal statement and cancelBackupToSDCard error)",
|
|
||||||
"209661": "EXIST_CHECK_SOFT_NAND",
|
|
||||||
"209662": "errChannel",
|
|
||||||
"209663": "errInodes",
|
|
||||||
"209664": "SD Backup timeout in B-10",
|
|
||||||
"209665": "JournalFlag error in B-10",
|
|
||||||
"209666": "Available space error in B-09 on checking remain size",
|
"209666": "Available space error in B-09 on checking remain size",
|
||||||
"209667": "Available space is not sufficient (NAND)",
|
"209667": "Available space is not sufficient (NAND)",
|
||||||
"209800": "No DNS Entry for oss-auth.shop.wii.com",
|
"250943": "Problems with your Club Nintendo account. It can't get connected with your shop account",
|
||||||
"209XXX": "Server connection timeout",
|
|
||||||
"220000": "Connection failed",
|
// Unknown errors start
|
||||||
"220001": "Unknown protocol",
|
"205928": "Unknown error",
|
||||||
"220002": "Out of memory",
|
"205958": "Unknown error",
|
||||||
"220003": "The requested URL was filtered by Opera's filter",
|
"205642": "Unknown error",
|
||||||
"220101": "Allocation error",
|
"205643": "Unknown error",
|
||||||
"220102": "Unsupported file",
|
"205903": "Unknown error",
|
||||||
"220103": "Empty file",
|
// Unknown errors end
|
||||||
"220104": "Invalid file",
|
|
||||||
"220105": "Javascript error",
|
// Misc. errors start
|
||||||
"220106": "Plugin error",
|
"205645": "Issue with your DSi shop account?",
|
||||||
"220201": "Not found",
|
"206699": "Try again later",
|
||||||
"220202": "Connection refused",
|
"051330": "Internet connection error. The Wii needs a 2.4gHz signal with 802.11b/g/n enabled, and the security set to WPA2-PSK (AES). The channel must also either be set to auto or be less than 12.",
|
||||||
"220003": "Filtered URL",
|
"206112": "The free title promotion has ended (ICR_END)",
|
||||||
"220000": "Connection Failed",
|
"206401": "Invalid characters in nick or password",
|
||||||
"220002": "Out of memory",
|
"206499": "Maintenance. Login not possible",
|
||||||
"220001": "Unknown protocol",
|
"205942": "Maintenance. Login not possible",
|
||||||
"250943": "Problems with your Club Nintendo -account. It can't get connected with your shop account"
|
// Misc. errors end
|
||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("submitBtn").addEventListener("click", function() {
|
document.getElementById("submitBtn").addEventListener("click", function() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user