Documentation
    Preparing search index...

    Interface IMQRPCError

    Response error data structure, which service returns if error occurred during service method execution.

    interface IMQRPCError {
        args: string;
        code: string;
        message: string;
        method: string;
        original?: any;
        stack: string;
        [key: string]: AnyJson;
    }

    Hierarchy

    • JsonObject
      • IMQRPCError

    Indexable

    • [key: string]: AnyJson
    Index

    Properties

    args: string
    code: string
    message: string
    method: string
    original?: any
    stack: string