blob: 4a9380fdf53f85b5fd054f8d13665a84724034c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright 2013 Jesse Morgan
*/
package com.p4square.grow.frontend;
import org.restlet.representation.StringRepresentation;
/**
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public class ErrorPage extends StringRepresentation {
public static final ErrorPage TEMPLATE_NOT_FOUND = new ErrorPage();
public static final ErrorPage RENDER_ERROR = new ErrorPage();
public ErrorPage() {
super("TODO");
}
public ErrorPage(String s) {
super(s);
}
}
|