01: /*
02: * FileNotFoundResponse.java
03: *
04: * Created on June 5, 2003, 8:48 PM
05: */
06:
07: package com.sun.portal.rproxy.connectionhandler;
08:
09: /*
10: *
11: * @author Mridul Muralidharan
12: *
13: * @version
14: */
15: public class FileNotFoundResponse extends HeaderResponse {
16:
17: private static final String STATUS_CODE = "404";
18:
19: private static final String STATUS_TEXT = "Not Found";
20:
21: public FileNotFoundResponse() {
22: super (STATUS_TEXT, STATUS_CODE, STATUS_TEXT, null);
23: }
24:
25: public FileNotFoundResponse(String message) {
26: super (message, STATUS_CODE, STATUS_TEXT, null);
27: }
28:
29: public FileNotFoundResponse(String message, String language) {
30: super (message, STATUS_CODE, STATUS_TEXT, null, language);
31: }
32:
33: public FileNotFoundResponse(String message, String status_text,
34: String language) {
35: super(message, STATUS_CODE, status_text, null, language);
36: }
37: }
|