sequelize
Version:
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and more.
14 lines (11 loc) • 304 B
text/typescript
import BaseError from './base-error';
/**
* Scope Error. Thrown when the sequelize cannot query the specified scope.
*/
class SequelizeScopeError extends BaseError {
constructor(message: string) {
super(message);
this.name = 'SequelizeScopeError';
}
}
export default SequelizeScopeError;