@denz93/vendure-plugin-3rd-party-auth
Version:
A set of auth strategies to work with 3rd party such as Google, Facebook, etc
12 lines (11 loc) • 434 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserExistedInAnotherStrategyError = void 0;
class UserExistedInAnotherStrategyError extends Error {
constructor(strategy) {
super();
this.name = 'UserExistedInAnotherStrategy';
this.message = `User existed in "${strategy}" strategy`;
}
}
exports.UserExistedInAnotherStrategyError = UserExistedInAnotherStrategyError;