@pallad/common-errors
Version:
Common domain errors
14 lines (13 loc) • 444 B
JavaScript
;
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;