UNPKG

248 BTypeScriptView Raw
1import BaseError from './base-error';
2/**
3 * Scope Error. Thrown when the sequelize cannot query the specified scope.
4 */
5declare class SequelizeScopeError extends BaseError {
6 constructor(message: string);
7}
8export default SequelizeScopeError;