KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > enhydraManager > presentation > ErrorPresentation


1 package enhydraManager.presentation;
2
3 import com.lutris.appserver.server.httpPresentation.*;
4
5 public class ErrorPresentation implements HttpPresentation {
6
7   public void run(HttpPresentationComms comms)
8         throws HttpPresentationException {
9
10         ErrorHTML htmlObj = (ErrorHTML)comms.xmlcFactory.create(ErrorHTML.class);
11         comms.response.writeDOM(htmlObj);
12     }
13 }
14
15
16
17
18
Popular Tags