UNPKG

@pallad/common-errors

Version:
14 lines (13 loc) 444 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthenticationError = void 0; const BaseError_1 = require("./BaseError"); /** * Indicates lack of ability to verify who is the participant performing an operation */ class AuthenticationError extends BaseError_1.BaseError { constructor(message) { super(message, 'AuthenticationError'); } } exports.AuthenticationError = AuthenticationError;