blob: 1e68a51c9cc245b2f8891652bb9a641db31a8a34 [file] [log] [blame]
package com.google.gerrit.client;
import com.google.gerrit.client.ui.Screen;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Element;
/** Displays an error message letting the user know the page doesn't exist. */
public class NotFoundScreen extends Screen {
public NotFoundScreen() {
super(Gerrit.C.notFoundTitle());
final Element body = DOM.createDiv();
DOM.setInnerText(body, Gerrit.C.notFoundBody());
DOM.appendChild(getElement(), body);
}
}