UNPKG

fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

18 lines 522 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents an error thrown because a user does not exist */ class UserNotFoundError extends Error { /** * @param query The query which resulted in this error */ constructor(query) { super(); this.name = 'UserNotFoundError'; this.message = `The user "${query}" does not exist`; this.query = query; } } exports.default = UserNotFoundError; //# sourceMappingURL=UserNotFoundError.js.map