Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Error.prototype.message

Właściwość message jest komunikatem błędu zapisanym w sposób czytelny dla czlowieka.

Opis

Właściwość zawiera krótki opis błędu, jeśli jest dostępny, lub został ustawiony. SpiderMonkey szeroko wykorzystuje właściwość message w wyjątkach. Właściwość message jest używany, wraz z właściwością name przez metodę Error.prototype.toString() do tworzenia tekstowej reprezentacji obiektu Error.

Domyślnie właściwość message jest pustym stringiem, ale to zachowanie może zostać nadpisane w instancji, poprzez przekazanie komunikatu jako pierwszy parametr do Error constructor.

Przykłady

Rzucanie ustawionego błędu

var e = new Error('Could not parse input'); // e.message is 'Could not parse input'
throw e;

Specyfikacje

Specification Status Comment
ECMAScript 1st Edition (ECMA-262) Standard Initial definition.
ECMAScript 5.1 (ECMA-262)
The definition of 'Error.prototype.message' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Error.prototype.message' in that specification.
Standard  

Kompatybilność z przeglądarkami

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Zobacz też

Autorzy i etykiety dokumentu

 Autorzy tej strony: fscholz, adam-tokarski
 Ostatnia aktualizacja: fscholz,