Fix error handling for failing to get output file

This commit is contained in:
Shane Kilkelly 2018-06-13 14:49:16 +01:00
parent 2cfc2b4738
commit 48a4f6c4c4

View file

@ -88,8 +88,8 @@ module.exports = ProjectOutputFileAgent = {
handleError: (error, req, res, next) ->
if error instanceof BadDataError
res.status(400).send("The submitted data is not valid")
else if error instanceof SourceFileNotFoundError
res.status(404).send("Source file not found")
else if error instanceof OutputFileFetchFailedError
res.status(404).send("Could not get output file")
else if error instanceof ProjectNotFoundError
res.status(404).send("Project not found")
else