* Sequelize provides a host of custom error classes, to allow you to do easier debugging. All of these errors are exposed on the sequelize object and the sequelize constructor.
* All sequelize errors inherit from the base JS error object.
*
* @fileOverview The Error Objects produced by Sequelize.
* @class Errors
*/
varutil=require('util');
...
...
@@ -11,6 +15,7 @@ var error = module.exports = {};
* The Base Error all Sequelize Errors inherit from.