UNPKG

@brewww/authentication-service

Version:
16 lines 523 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OtpNotFoundError = void 0; const dto_1 = require("../dto"); const config_1 = require("../config"); class OtpNotFoundError extends dto_1.ExtendedError { constructor() { super(); this.message = "Otp not found."; this.extensions = { code: (0, config_1.appConfig)().errorCodePrefix + "006", }; } } exports.OtpNotFoundError = OtpNotFoundError; //# sourceMappingURL=otp-not-found.error.js.map