[][src]Trait stdweb::web::error::IError

pub trait IError: ReferenceType {
    fn message(&self) -> String { ... }
fn name(&self) -> String { ... } }

Represents the JavaScript Error interface. An Error is thrown whenever a run-time error occurs.

(JavaScript docs)

Provided methods

fn message(&self) -> String

Returns a human-readable description of the error.

(JavaScript docs)

fn name(&self) -> String

Returns a name specifiying the type of error.

(JavaScript docs)

Loading content...

Implementors

impl IError for AbortError[src]

impl IError for DomException[src]

impl IError for Error[src]

impl IError for HierarchyRequestError[src]

impl IError for IndexSizeError[src]

impl IError for InvalidAccessError[src]

impl IError for InvalidCharacterError[src]

impl IError for InvalidStateError[src]

impl IError for NotFoundError[src]

impl IError for NotSupportedError[src]

impl IError for SecurityError[src]

impl IError for SyntaxError[src]

impl IError for TypeError[src]

Loading content...