diff options
Diffstat (limited to 'src/com/p4square/grow/frontend/ErrorPage.java')
-rw-r--r-- | src/com/p4square/grow/frontend/ErrorPage.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/p4square/grow/frontend/ErrorPage.java b/src/com/p4square/grow/frontend/ErrorPage.java index b57cc49..721b477 100644 --- a/src/com/p4square/grow/frontend/ErrorPage.java +++ b/src/com/p4square/grow/frontend/ErrorPage.java @@ -31,6 +31,9 @@ public class ErrorPage extends WriterRepresentation { public static final ErrorPage RENDER_ERROR = new ErrorPage("Error rendering page."); + public static final ErrorPage BACKEND_ERROR = + new ErrorPage("Error communicating with backend."); + private static Template cTemplate = null; private final String mMessage; |