Errors Schema


Version 0.7.0

JSON-Schema

This document was generated from a JSON-Schema, and is intended to provide a human readable overview and examples of the methods contained in the module.

For the full schema, see the link below.

Schema
errors.json

Table of Contents

Schemas

FireboltError

type FireboltError = {
  code: number
  message: string
  data?: {
  }
}
Examples
{
  "code": -32601,
  "message": "Method not found"
}

Details

An error resulting from calling a Firebolt method.


UserNotAuthenticatedError

type UserNotAuthenticatedError = {"code":401,"message":"User is not authenticated."}
Examples
{
  "code": 401,
  "message": "User is not authenticated."
}

Go To Top