芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/sequelize/lib/errors/empty-result-error.js
'use strict'; const BaseError = require('./base-error'); /** * Thrown when a record was not found, Usually used with rejectOnEmpty mode (see message for details) */ class EmptyResultError extends BaseError { constructor(message) { super(message); this.name = 'SequelizeEmptyResultError'; Error.captureStackTrace(this, this.constructor); } } module.exports = EmptyResultError;