@experium/nest-bruteforce-guard
Version:
Authorization protection from bruteforce
11 lines (10 loc) • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserNotFoundException = void 0;
const common_1 = require("@nestjs/common");
class UserNotFoundException extends common_1.UnauthorizedException {
constructor(objectOrError, description) {
super(objectOrError, description);
}
}
exports.UserNotFoundException = UserNotFoundException;