Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید







3.11 Error Objects


ECMAScript v3 defines a


number
of classes that represent errors. The JavaScript interpreter
"throws" an object of one of these types when a runtime
error occurs. (See the throw and
try statements in Chapter 6 for
a discussion of throwing and catching errors.) Each error object has
a message
property that contains an implementation-specific error message. The
types of predefined error objects are Error, EvalError, RangeError,
ReferenceError, SyntaxError, TypeError, and URIError. You can find
out more about these classes in the core reference section of this
book.



    / 844