Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "source/System/ExceptionType"

Index

Variables

Error

Error: string = "Error"

An error in the eval() function has occurred.

EvalError

EvalError: string = "EvalError"

An error in the eval() function has occurred.

RangeError

RangeError: string = "RangeError"

Out of range number value has occurred.

ReferenceError

ReferenceError: string = "ReferenceError"

An illegal reference has occurred.

SyntaxError

SyntaxError: string = "SyntaxError"

A syntax error within code inside the eval() function has occurred. All other syntax errors are not caught by try/catch/finally, and will trigger the default browser error message associated with the error. To catch actual syntax errors, you may use the onerror event.

TypeError

TypeError: string = "TypeError"

An error in the expected variable type has occurred.

URIError

URIError: string = "URIError"

An error when encoding or decoding the URI has occurred (ie: when calling encodeURI()).

Generated using TypeDoc