Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Error message

From Wikipedia, the free encyclopedia
(Redirected fromError screen)
Computer message indicating an error
An error message when attempting to use the Wikipedia Visual editor

Anerror message is the information displayed when an unforeseen problem occurs, usually on acomputer or other device. Modern operating systems withgraphical user interfaces, often display error messages using dialog boxes. Error messages are used when user intervention is required, to indicate that a desired operation has failed, or to relay important warnings (such as warning a computer user that they are almost out ofhard disk space). Error messages are seen widely throughout computing, and are part of everyoperating system orcomputer hardware device. The proper design of error messages is an important topic inusability and other fields ofhuman–computer interaction.[1]

Common error messages

[edit]

The following error messages are commonly seen by modern computer users:[citation needed]

Access denied
This error occurs if the user does not have privileges to afile, or if it has beenlocked by some program or user.
Device not ready
This error most often occurs when there is nofloppy disk (or a bad disk) in the disk drive and the system tries to perform tasks involving that disk.
Disk Boot Failure
This error message is commonly seen when the hard drive of the computer is having problems. If the computer can boot from a network, it may instead display the message "Media test failure, check cable".
File not found
The file concerned may have been damaged, moved, deleted, or abug may have caused the error. Alternatively, the file might not exist, or the user has mistyped its name. This is most commonly seen on the internet with outdated links to web pages thatno longer exist. On a local computer, this is more frequent oncommand line interfaces than ongraphical user interfaces where files are presentediconically and users do not type file names.
Low Disk Space
This error occurs when the hard drive is (nearly) full. To fix this, the user should close some programs (to freeswap file usage) and delete some files (normally temporary files, or other files after they have been backed up), or get a bigger hard drive.
Out of memory
This error occurs when the system has run out of memory or tries to load a file too large to store inRAM. The fix is to close some programs or install more physical memory.
[program name] has stopped working.
This message and similar ones are displayed by several operating systems when program causes ageneral protection fault or invalidpage fault.

Specific error messages

[edit]
  • ? - theed text editor will infamously reply with a single question mark for nearly all error conditions.
  • Abort, Retry, Fail? - A notoriously confusing error message seen inMS-DOS
    An example of an Error message .vbs script
  • Bad command or file name - Another notoriously common and confusing error message seen inMS-DOS
  • TheBlue Screen of Death - On Microsoft Windows and ReactOS operating systems, this screen appears when Windows or ReactOS can no longer run because of a severe error.[2] It is roughly analogous to akernel panic onLinux,Unix, ormacOS.
  • Can't extend - an error message fromAcornDFS. DFS stores files in non-fragmented contiguous disk space, this error is caused when trying to extend an open random-access file into space that is already occupied by another file.
  • Guru Meditation - an error message from theAmiga, roughly analogous to a kernel panic or BSOD, also adopted by more recent products such asVirtualBox.
  • HTTP 404 - A file not found error seen on theWorld Wide Web, usually resulting from a link to a page that has been moved or deleted, or a mistyped URL
  • lp0 on fire - A Unix warning that the printer may be "on fire", literally or not
  • Not a typewriter - A Unix error message that is confusing due to its now obsolete use of the word "typewriter", and which is sometimes output when the nature of the error is seemingly entirely different
  • PC LOAD LETTER - An error on several HP laser printers that simply asked the user to add "Letter" size paper in a confusing way[3]
  • SYNTAX ERROR - Seen on many computer systems when the received instructions are in a format they don't understand
  • HTTP 504 - An error found on theWorld Wide Web stating that a gateway timeout occurred in the internet link.
  • Error 1603 - An error that states that a problem during installation of acomputer program, this error particularly occurs onWindows computer systems.
  • <application name> has stopped - An error message commonly found onAndroid devices, which states a current running application unexpectedly stops working or crashes.
  • Success - one of the error messages (in this instance,POSIX) that occurs when the program has detected an error condition, yet the actual error message printing routine relies onC library to print the error reported by the operating system (in this case,errno.h), while the underlyingsystem calls have succeeded and report no errors (in this case,errno == 0). This is a form of sloppy error handling that is particularly confusing for the user.
  • [Connection Time Out Error Mac] - Error occurs on Mac systems when it takes more time to connect wireless networks.

Fail pets

[edit]
Tumbeasts gnawing on servers, used by Tumblr in 2011

With the rise of Web 2.0 services such asTwitter, end-user facing error messages such asHTTP 404 andHTTP 500 started to be displayed with whimsical characters, termed Fail Pets or Error Mascots. The term "Fail Pet" was coined, or at least first used in print, by Mozilla Engineer Fred Wenzel in a post on his blog entitled "Why Wikipedia might need a fail-pet — and why Mozilla does not."[4] Dr. Sean Rintel argues that error messages are a critical strategic moment inbrand awareness and loyalty. Fail pets are of interest to marketers because they can result in brand recognition (especially throughearned media). "However, that same recognition carries the danger of highlighting service failure."[5] The most famous fail pet is Twitter'sFail Whale (seeTwitter service outages). Other fail pets include:

Message format

[edit]

The form that error messages take varies between operating systems and programs.

Error messages on hardware devices, like computer peripherals, may take the form of dedicated lights indicating an error condition, a brief code that needs to be interpreted using a look-up sheet or a manual, or via a more detailed message on a display.

On computers, error messages may take the form of text printed to a console, or they may be presented as part of agraphical user interface. Error messages are often presented as adialog box, which makes them cause a followingmode error in the user interaction. In many cases the original error can be avoided by error prevention techniques. Instead of raising an error message the system design should have avoided the conditions that caused the error.[6]

While various graphical user interfaces have different conventions for displaying error messages, several techniques have become common:

  • Adialog box, orpop-up message, appears in a window on the screen, blocking further interaction with the computer until it is acknowledged. On Mac OS X,sheets are a form of dialog box that are attached to a specific window.
  • Notification icons appear to notify a user about a condition without interrupting their work. On Windows, notification icons appear in the System Tray. On Mac OS X, notification icons may appear in the menu bar, or may take the form of an application's icon "bouncing" in the Dock. TheGNOME user interface for Unix systems can display notification icons in a panel.
  • Minor errors may be displayed in astatus bar, a small portion of an application's window that can display brief messages to the user.

The three main factors[7] that influence the design of error messages are technical limitations, the amount of information to be presented, and what kind of user input is required.

Some systems have technical limitations that may constrain the amount of information an error message can contain. For example, a printer with a sixteen-character alphanumeric display can only show a very limited amount of information at once, so it may need to display very terse error messages. Even with computer monitors, the programmer must consider the smallest monitor that a user might reasonably use, and ensure that any error messages will fit on that screen.

The nature of the error determines the amount of information required to effectively convey the error message. A complex issue may require a more detailed error message in order to adequately inform the user of the problem.

Security

[edit]

When designing error messages, software designers should take care to avoid creating security vulnerabilities. The designer should give the user enough information to make an intelligent decision, but not so much information that the user is overwhelmed or confused. Extraneous information may be hidden by default or placed in a separate location. Error message should not expose information that can be exploited by acracker to obtain information that is otherwise difficult to obtain. Examples aresystems which may show either "invalid user" or "invalid password" depending on which is incorrect, and the error page in theweb serverIIS 5.0 which provides a complete technical description of the error including a source code fragment.

See also

[edit]

References

[edit]
  1. ^Minhas, Saadis (May 30, 2018)."How to Write Good Error Messages".UX. RetrievedJan 30, 2019.
  2. ^Fisher, Tim (2019-01-16)."Blue Screens of Death (BSOD): Everything You Need to Know".Lifewire. Retrieved2019-01-30.
  3. ^McNamara, Paul (2009-04-29)."LaserJet turns 25 ... 'PC LOAD LETTER' still unfathomable".Network World. Retrieved2019-01-30.
  4. ^Wenzel, Fred (August 2009)."why wikipedia might need a fail-pet — and why mozilla does not". Retrieved8 February 2012.
  5. ^Rintel, Sean (2 November 2011)."The Evolution of Fail Pets : Strategic Whimsy and Brand Awareness in Error Messages". UX Magazine. Retrieved8 February 2012.
  6. ^Raskin, Jef (2000)."6-4-2: Messages to the User".The Humane Interface: New Directions for Designing Interactive Systems. ACM Press Series. Addison-Wesley. p. 178.ISBN 978-0-201-37937-2.
  7. ^"Non-Fatal Errors: Creating usable, effective error messages". Archived fromthe original on 2009-05-08. Retrieved2007-02-16.

External links

[edit]
Wikimedia Commons has media related toError messages.
System failure
Application failure
Device and data errors
Other
Lists
Related
Retrieved from "https://en.wikipedia.org/w/index.php?title=Error_message&oldid=1243838726"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp