From 1812ec6326d6ebb806e8ec04d130b56c51951a14 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Wed, 4 Feb 2015 22:26:37 +0000 Subject: [PATCH] Bugfix: do not display a enum raw value but a human explanation --- src/com/sheepit/client/Error.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/sheepit/client/Error.java b/src/com/sheepit/client/Error.java index fc78f23..0b23352 100644 --- a/src/com/sheepit/client/Error.java +++ b/src/com/sheepit/client/Error.java @@ -124,6 +124,8 @@ public class Error { return "This client is too old, you need to update it"; case AUTHENTICATION_FAILED: return "Failed to authenticate, please check your login and password"; + case DOWNLOAD_FILE: + return "Error will downloading project's needed files. Will try another project in a few minutes."; case NOOUTPUTFILE: return "Renderer has generated no output file, possibly a wrong project configuration or you are missing required libraries. Will try another project in a few minutes."; case RENDERER_CRASHED: