芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/sequelize/lib/errors/instance-error.js
'use strict'; const BaseError = require('./base-error'); /** * Thrown when a some problem occurred with Instance methods (see message for details) */ class InstanceError extends BaseError { constructor(message) { super(message); this.name = 'SequelizeInstanceError'; Error.captureStackTrace(this, this.constructor); } } module.exports = InstanceError;