comparison src/luan/modules/http/NotFound.java @ 775:1a68fc55a80c

simplify dir structure
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 26 Aug 2016 14:36:40 -0600
parents http/src/luan/modules/http/NotFound.java@a98812908fbc
children fe63c508a177
comparison
equal deleted inserted replaced
774:3e30cf310e56 775:1a68fc55a80c
1 package luan.modules.http;
2
3 import java.io.IOException;
4 import javax.servlet.http.HttpServletRequest;
5 import javax.servlet.http.HttpServletResponse;
6 import org.eclipse.jetty.server.Request;
7 import luan.LuanState;
8
9
10 public class NotFound extends LuanHandler {
11
12 public NotFound(LuanState luan,String loggerRoot) {
13 super(luan,loggerRoot);
14 }
15
16 @Override public void handle(String target,Request baseRequest,HttpServletRequest request,HttpServletResponse response)
17 throws IOException
18 {
19 super.handle("/not_found",baseRequest,request,response);
20 }
21
22 }