@globalart/nestcord
Version:
A module for creating Discord bots using NestJS, based on Discord.js
11 lines (10 loc) • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaginationNotFoundException = void 0;
const common_1 = require("@nestjs/common");
class PaginationNotFoundException extends common_1.NotFoundException {
constructor() {
super('Pagination builder not found');
}
}
exports.PaginationNotFoundException = PaginationNotFoundException;