Merge pull request #531 from sharelatex/hof-custom-retry

add V1HistoryNotSyncedError
This commit is contained in:
Hayden Faulds 2018-05-02 14:01:07 +01:00 committed by GitHub
commit 7c93c92c6a

View file

@ -47,6 +47,13 @@ UnsupportedExportRecordsError = (message) ->
return error
UnsupportedExportRecordsError.prototype.__proto___ = Error.prototype
V1HistoryNotSyncedError = (message) ->
error = new Error(message)
error.name = "V1HistoryNotSyncedError"
error.__proto__ = V1HistoryNotSyncedError.prototype
return error
V1HistoryNotSyncedError.prototype.__proto___ = Error.prototype
ProjectHistoryDisabledError = (message) ->
error = new Error(message)
error.name = "ProjectHistoryDisabledError "
@ -62,4 +69,5 @@ module.exports = Errors =
UnsupportedFileTypeError: UnsupportedFileTypeError
UnsupportedBrandError: UnsupportedBrandError
UnsupportedExportRecordsError: UnsupportedExportRecordsError
V1HistoryNotSyncedError: V1HistoryNotSyncedError
ProjectHistoryDisabledError: ProjectHistoryDisabledError