芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/sequelize/lib/errors/sequelize-scope-error.js
'use strict'; const BaseError = require('./base-error'); /** * Scope Error. Thrown when the sequelize cannot query the specified scope. */ class SequelizeScopeError extends BaseError { constructor(parent) { super(parent); this.name = 'SequelizeScopeError'; Error.captureStackTrace(this, this.constructor); } } module.exports = SequelizeScopeError;