2020-05-06 06:09:15 -04:00
|
|
|
/* eslint-disable
|
|
|
|
no-proto,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-05-06 06:08:21 -04:00
|
|
|
let Errors;
|
|
|
|
var NotFoundError = function(message) {
|
|
|
|
const error = new Error(message);
|
|
|
|
error.name = "NotFoundError";
|
|
|
|
error.__proto__ = NotFoundError.prototype;
|
|
|
|
return error;
|
|
|
|
};
|
|
|
|
NotFoundError.prototype.__proto__ = Error.prototype;
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:08:21 -04:00
|
|
|
var OpRangeNotAvailableError = function(message) {
|
|
|
|
const error = new Error(message);
|
|
|
|
error.name = "OpRangeNotAvailableError";
|
|
|
|
error.__proto__ = OpRangeNotAvailableError.prototype;
|
|
|
|
return error;
|
|
|
|
};
|
|
|
|
OpRangeNotAvailableError.prototype.__proto__ = Error.prototype;
|
2016-05-31 08:24:19 -04:00
|
|
|
|
2020-05-06 06:08:21 -04:00
|
|
|
var ProjectStateChangedError = function(message) {
|
|
|
|
const error = new Error(message);
|
|
|
|
error.name = "ProjectStateChangedError";
|
|
|
|
error.__proto__ = ProjectStateChangedError.prototype;
|
|
|
|
return error;
|
|
|
|
};
|
|
|
|
ProjectStateChangedError.prototype.__proto__ = Error.prototype;
|
2017-08-07 09:43:28 -04:00
|
|
|
|
2020-05-06 06:08:21 -04:00
|
|
|
var DeleteMismatchError = function(message) {
|
|
|
|
const error = new Error(message);
|
|
|
|
error.name = "DeleteMismatchError";
|
|
|
|
error.__proto__ = DeleteMismatchError.prototype;
|
|
|
|
return error;
|
|
|
|
};
|
|
|
|
DeleteMismatchError.prototype.__proto__ = Error.prototype;
|
2019-05-07 09:15:26 -04:00
|
|
|
|
2020-05-06 06:08:21 -04:00
|
|
|
module.exports = (Errors = {
|
|
|
|
NotFoundError,
|
|
|
|
OpRangeNotAvailableError,
|
|
|
|
ProjectStateChangedError,
|
|
|
|
DeleteMismatchError
|
|
|
|
});
|