diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-09-01 17:37:06 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-09-01 17:37:06 -0700 |
commit | 9e267f46c5dd69821462805ec233f707c27aacc9 (patch) | |
tree | 8ab4ae9a3394776a0cdda4ca20eb8b59df35374b /src/com/p4square/grow/frontend/ErrorPage.java | |
parent | 5e3dc2047ed9b0b59989bba9f0d86a28aa25613b (diff) |
Adding video completion tracking to frontend
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; |