node-eventstore-client/src/errors/accessDeniedError.js

22 lines
810 B
JavaScript
Raw Normal View History

var util = require('util');
2016-03-18 21:04:07 +00:00
var Long = require('long');
2016-03-18 21:04:07 +00:00
function AccessDeniedError(action, streamOrTransactionId) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.action = action;
2016-03-18 21:04:07 +00:00
if (typeof streamOrTransactionId === 'string') {
this.message = util.format("%s access denied for stream '%s'.", action, streamOrTransactionId);
this.stream = streamOrTransactionId;
return;
}
if (Long.isLong(streamOrTransactionId)) {
this.message = util.format("%s access denied for transaction %s.", action, streamOrTransactionId);
this.transactionId = streamOrTransactionId;
return;
}
throw new TypeError("second argument must be a stream name or transaction Id.");
}
util.inherits(AccessDeniedError, Error);
module.exports = AccessDeniedError;