Added basic HTML generation and response handling.
[jrw.git] / src / jrw / resp / NotFound.java
diff --git a/src/jrw/resp/NotFound.java b/src/jrw/resp/NotFound.java
new file mode 100644 (file)
index 0000000..a81b188
--- /dev/null
@@ -0,0 +1,7 @@
+package jrw.resp;
+
+public class NotFound extends HttpError {
+    public NotFound() {
+       super(404);
+    }
+}