init source
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
const BaseError = require('./base-error');
|
||||
|
||||
/**
|
||||
* Thrown when a query is passed invalid options (see message for details)
|
||||
*/
|
||||
class QueryError extends BaseError {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = 'SequelizeQueryError';
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = QueryError;
|
||||
Reference in New Issue
Block a user