A-Z Popular Blog Errors Search »
Errors
 Advertisements
Error Messages

Types Of Error

Error Tolerance

Human Error

Human Error vs Design Error

13 Examples of System Errors

 ,
A system error is a failure of software. These come in several common varieties as follows.

Null Pointer

An attempt to use a variable that hasn't been initialized. This is a very common error that programmers encounter but it is considered a poor practice to let this propagate to users or administrators as it conveys no useful information. For example, if a null pointer exception occurs because a customer's name is missing in a database an error such as "customer name not in database" is more meaningful to administrators.

Missing Files

The system depends on some file that doesn't exist or isn't as expected. This often occurs due to "dependency hell" whereby different software packages share libraries of functionality. This means that installing or uninstalling one program can affect other programs as they may update libraries that are shared. This results from software architecture that values reuse and efficiency over stability, resilience and maintainability.

Out of Memory

Software depends on memory and typically can't function when the operating system can't provide what it needs. In some cases, the physical machine has memory but some constraint on memory has been placed on the software by the operating system or a framework on which it runs. For example, a java program can crash if its Java Virtual Machine runs out of memory due to a configured limit.

Unauthorized

Indicates that a user or entity isn't authenticated or that they are authenticated but don't have authorization to perform a function or access a resource. For example, a bank customer without a brokerage account attached to their card who attempts to access a screen for trading stocks.

Parsing Error

An inability to process structured information such as a file. Old systems typically require information to conform to strict formats and will throw an error at the smallest inconsistency. For example, an XML parser that throws errors when a single bracket is unmatched. Newer systems tend to be more flexible and are often based on loosely defined information structures that are less likely to generate parsing errors.

Invalid Parameter

A parameter is input that is given to a system by users, configuration or other systems. Where the system doesn't understand this input it may throw an error. This is an extremely common type of error that is known by many names such as bad arguments or unexpected format.

Unexpected Error

Indicates an error that results from a software flaw as opposed to an error that is a feature of a system. This feels a little humorous but errors are often specifically handled by systems. For example, an ecommerce site that finds that an item placed in a cart has gone out of stock may present an error to the customer at checkout that is essentially a feature of the system.

Fatal Error

A fatal error is an indication that a program is giving up such that it has essentially decided to crash. This often occurs because an expected resource is completely unavailable. For example, a web browser that is getting no response from the operating system may throw a fatal error.

Blue Screen of Death

A blue screen of death is a complete system crash that is handled in some primitive way by a low level system. Old fashioned systems tend to claim that they must crash for "safety" when an illegal operation occurs. This is debatable and isn't as common amongst more modern systems that are more likely to prioritize resilience over "safety."

Halt and Catch Fire

Halt and catch fire is an analogy to the tendency for systems to overreact to errors. For example, a memory card that completely disables itself when it detects a problem with a single segment of memory. Engineers commonly claim this is the only "safe" way to handle such errors but this may prevent users from recovering data from a device that is mostly physically functional.

Glitch

Advanced modern systems that are designed for resilience don't halt and catch fire in the name of safety. These systems are likely to have glitches whereby strange things happen due to underlying errors without any big crash. For example, a game environment where an AI suddenly does something that violates the entire physics of the game environment.

Error Codes

It is a common practice to show users an error code that differs from the underlying system error. In some cases, these are mapped somewhere such that they can be investigated when they are reported by users. In other cases, they aren't really mapped in any meaningful way such that they are simply designed to make the user feel they've been informed. For example, a bank that displays "Error R700" for almost any technical failure such that the message is essentially meaningless despite appearing to be highly specific.

HTTP Status Codes

HTTP status codes are used to indicate errors on the internet in the response of a server to a client. These codes indicate both successful responses such as code 200 that means "ok." The following are examples of codes that indicate an error.
HTTP CodeMeaningDescription
400Bad RequestThe request from the client wasn't understood by the server
401
403
Unauthorized
Forbidden
The client isn't authorized to access the requested resource.
404Not FoundThe resource wasn't found. For example, a web page that has been deleted.
418I'm a teapotPart of the official specification but this appears to be a joke. Humor is common in the culture of communicating system errors.
429Too Many RequestsThe server is too overloaded to respond at the moment.
500Internal Server ErrorIndicates an internal software error on the server. For example, the server's database is down.

Errors

This is the complete list of articles we have written about errors.
Error Messages
Errors
Human Error
Latent Human Error
Random Error
Risk
System Error Examples
Systems
Types Of Error
Uncertainty
Unforced Error
If you enjoyed this page, please consider bookmarking Simplicable.
 

Errors

The common types of error with examples.

Latent Human Error

An overview of latent human error.

Human Error vs Design Error

The line between human error and design error.

Error Tolerance

A definition or error tolerance with examples.

Human Error

Human error is a mistake in the planning or execution of a task that results in failure to meet a goal.

Unforced Error

The definition of unforced error with examples.

Error Messages

A list of good practices for error messages with examples.

Failure To Recognize Failure

An overview of failure to recognize failure with examples.

Cost Of Quality

An overview of cost of quality with examples.

Types Of Error

The common types of error with examples.

Arrow Text

A list of useful unicode arrows.

System Program

The definition of system program with examples.

Analog

An overview of analog with examples.

Computer Examples

A list of everyday things that are computers or have computers embedded in them.

Software Products

A list of common types of software product.

System Analysis Examples

An overview of system analysis with examples.
The most popular articles on Simplicable in the past day.

New Articles

Recent posts or updates on Simplicable.
Site Map