this.event = event;
}
@Override
public void couldntFind(FilterChain chain, MutableRequest request, MutableResponse response) {
event.fire(new ControllerNotFound());
try {
chain.doFilter(request, response);
} catch (IOException | ServletException e) {
throw new InterceptionException(e);
}