Error code

From Wikipedia, the free encyclopedia

In computing, an error code (or a return code) is a numeric or alphanumeric code that indicates the nature of an error and, when possible, why it occurred.[1] Error codes can be reported to end users of software, returned from communication protocols, or used within programs as a method of representing anomalous conditions.

In consumer products[edit]

The error code E74. Above the large E 74 code is the message "System Error. Contact Xbox Customer Support." repeated in different languages.
Error E74 on the Xbox 360, indicating a hardware failure[2]

Error codes are commonly encountered on displays of consumer electronics to users in order to communicate or specify an error. They are commonly reported by consumer electronics when users bring electronics to perform tasks that they cannot do (e.g., dividing by zero), or when the program within a device encounters an anomalous condition.

Error codes reported by consumer electronics are used to help diagnose and repair technical problems. An error code can be communicated to relevant support staff to identify potential fixes, or can simplify research into the cause of an error.

There is no definitive format for error codes, meaning that error codes typically differ from/between products and or companies.

In computer programming[edit]

Error codes in computers can be passed to the system itself, to judge how to respond to the error. Often error codes come synonymous with an exit code or a return value. The system may also choose to pass the error code to its user(s). The Blue screen of death is an example of how the Windows operating system communicates error codes to the user.

Error codes can be used within a computer program to represent an anomalous condition. A computer program can take different actions depending on the value of an error code.

Different programming languages, operating systems, and programming environments often have their own conventions and standards for the meanings and values of error codes. Examples include:

The usage of error codes as an error handling strategy is often contrasted against using exceptions for error handling.[7][8]

In communication protocols[edit]

Communication protocols typically define a standard set of error codes, as a means of communicating the status or result of an operation between the entities in the system.

Several high-level protocols in the TCP/IP stack, such as HTTP, FTP, and SMTP, define their own standard sets of error codes:

In automobiles[edit]

Error codes in automobiles, sometimes referred to as trouble codes, indicate to a driver or car mechanic what is wrong with a vehicle before repairs are initiated.[citation needed]

In vehicles with CAN buses, error codes are often five-digit codes that pinpoint a particular car fault. Car owners can make use of an on-board diagnostics scanner or an owner's manual to identify the meaning of a trouble code. Five-digit diagnostic trouble codes typically consist of one letter and four numbers (e.g. P0123).[citation needed]

See also[edit]

References[edit]

  1. ^ "What is an Error Code?". ComputerHope.com. Retrieved 2020-01-22.
  2. ^ "Xbox Support". support.xbox.com. Retrieved 2023-03-12.
  3. ^ intro(2) – Version 7 Unix Programmer's Manual
  4. ^ errno(3) – Linux Programmer's Manual – Library Functions
  5. ^ intro(2) – Solaris 11.4 System Calls Reference Manual
  6. ^ "[MS-ERREF]: Overview". learn.microsoft.com. 30 March 2020. Retrieved 2023-03-12.
  7. ^ TylerMSFT (17 October 2022). "Modern C++ best practices for exceptions and error handling". Learn.Microsoft.com. Retrieved 2023-03-12.
  8. ^ "Standard C++". IsoCpp.org. Retrieved 2023-03-12.

External links[edit]