mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-15 04:45:45 +01:00
6 lines
207 B
JavaScript
6 lines
207 B
JavaScript
import ctrlError from "./ctrl_error.js";
|
|
import { ApplicationError } from "../lib/error.js";
|
|
|
|
export default function(render) {
|
|
ctrlError(render)(new ApplicationError("Not Found", "404 - Not Found"));
|
|
}
|