More renaming

This commit is contained in:
Alasdair Smith 2018-01-18 16:41:26 +00:00
parent f8a068ee9e
commit 89af8ba123

View file

@ -40,12 +40,12 @@ UnsupportedBrandError = (message) ->
return error return error
UnsupportedBrandError.prototype.__proto___ = Error.prototype UnsupportedBrandError.prototype.__proto___ = Error.prototype
UnsupportedPublisherExportsError = (message) -> UnsupportedExportRecordsError = (message) ->
error = new Error(message) error = new Error(message)
error.name = "UnsupportedPublisherExportsError" error.name = "UnsupportedExportRecordsError"
error.__proto__ = UnsupportedPublisherExportsError.prototype error.__proto__ = UnsupportedExportRecordsError.prototype
return error return error
UnsupportedPublisherExportsError.prototype.__proto___ = Error.prototype UnsupportedExportRecordsError.prototype.__proto___ = Error.prototype
module.exports = Errors = module.exports = Errors =
NotFoundError: NotFoundError NotFoundError: NotFoundError
@ -54,4 +54,4 @@ module.exports = Errors =
InvalidNameError: InvalidNameError InvalidNameError: InvalidNameError
UnsupportedFileTypeError: UnsupportedFileTypeError UnsupportedFileTypeError: UnsupportedFileTypeError
UnsupportedBrandError: UnsupportedBrandError UnsupportedBrandError: UnsupportedBrandError
UnsupportedPublisherExportsError: UnsupportedPublisherExportsError UnsupportedExportRecordsError: UnsupportedExportRecordsError