2016-03-18 11:59:03 -04:00
|
|
|
NotFoundError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = "NotFoundError"
|
|
|
|
error.__proto__ = NotFoundError.prototype
|
|
|
|
return error
|
|
|
|
NotFoundError.prototype.__proto__ = Error.prototype
|
|
|
|
|
2017-03-21 06:57:09 -04:00
|
|
|
ServiceNotConfiguredError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = "ServiceNotConfiguredError"
|
|
|
|
error.__proto__ = ServiceNotConfiguredError.prototype
|
|
|
|
return error
|
2017-05-11 06:29:57 -04:00
|
|
|
ServiceNotConfiguredError.prototype.__proto__ = Error.prototype
|
|
|
|
|
|
|
|
TooManyRequestsError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = "TooManyRequestsError"
|
|
|
|
error.__proto__ = TooManyRequestsError.prototype
|
|
|
|
return error
|
|
|
|
TooManyRequestsError.prototype.__proto__ = Error.prototype
|
2017-03-21 06:57:09 -04:00
|
|
|
|
2017-05-19 11:21:02 -04:00
|
|
|
InvalidNameError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = "InvalidNameError"
|
|
|
|
error.__proto__ = InvalidNameError.prototype
|
|
|
|
return error
|
|
|
|
InvalidNameError.prototype.__proto__ = Error.prototype
|
2017-03-21 06:57:09 -04:00
|
|
|
|
2017-12-12 07:50:20 -05:00
|
|
|
UnsupportedFileTypeError = (message) ->
|
2017-12-08 06:31:44 -05:00
|
|
|
error = new Error(message)
|
2017-12-12 07:50:20 -05:00
|
|
|
error.name = "UnsupportedFileTypeError"
|
|
|
|
error.__proto__ = UnsupportedFileTypeError.prototype
|
2017-12-08 06:31:44 -05:00
|
|
|
return error
|
2017-12-12 07:50:20 -05:00
|
|
|
UnsupportedFileTypeError.prototype.__proto___ = Error.prototype
|
2017-12-08 06:31:44 -05:00
|
|
|
|
2018-01-17 12:50:09 -05:00
|
|
|
UnsupportedProjectError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = "UnsupportedProjectError"
|
|
|
|
error.__proto__ = UnsupportedProjectError.prototype
|
|
|
|
return error
|
|
|
|
UnsupportedProjectError.prototype.__proto___ = Error.prototype
|
|
|
|
|
2016-03-18 11:59:03 -04:00
|
|
|
module.exports = Errors =
|
2017-03-21 06:57:09 -04:00
|
|
|
NotFoundError: NotFoundError
|
|
|
|
ServiceNotConfiguredError: ServiceNotConfiguredError
|
2017-05-11 06:29:57 -04:00
|
|
|
TooManyRequestsError: TooManyRequestsError
|
2017-05-19 11:21:02 -04:00
|
|
|
InvalidNameError: InvalidNameError
|
2017-12-12 07:50:20 -05:00
|
|
|
UnsupportedFileTypeError: UnsupportedFileTypeError
|
2018-01-18 07:09:33 -05:00
|
|
|
UnsupportedProjectError: UnsupportedProjectError
|