fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
18 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an error that is thrown when an authentication does not exist in the client's session store
*/
class AuthenticationMissingError extends Error {
/**
* @param type The authentication type that does not exist
*/
constructor(type) {
super();
this.name = 'AuthenticationMissingError';
this.message = `The authentication "${type}" does not exist in the client's session store`;
this.type = type;
}
}
exports.default = AuthenticationMissingError;
//# sourceMappingURL=AuthenticationMissingError.js.map