Add ProjectionsManager

This commit is contained in:
Nicolas Dextraze
2017-10-18 14:39:25 -07:00
parent 18e35c56f9
commit 16c081020a
10 changed files with 553 additions and 4 deletions

View File

@ -0,0 +1,10 @@
const util = require('util');
function ProjectionCommandFailedError(httpStatusCode, message) {
Error.captureStackTrace(this, this.constructor);
this.httpStatusCode = httpStatusCode;
this.message = message;
}
util.inherits(ProjectionCommandFailedError, Error);
module.exports = ProjectionCommandFailedError;