Documentation
    Preparing search index...

    Interface ImageError

    Interface of the common abstraction behind a platform specific error object that is used by the Image's events.

    interface ImageError {
        getErrorType(): string;
        getMessage(): string;
        toString(): string;
    }
    Index

    Methods

    • Returns the type (typically the class name) of the Error.

      Returns string

    • Returns the message of the Error.

      Returns string

    • Returns the string representation of the Error.

      Returns string