How to send back response to the client in an EndpointInterceptor without processing the endpoint ?

Ex for a LoginInterceptor :
request -> interceptor#login() -> "login failed" -> send response

The handleRequest method return boolean. After a login failed should I return fasle, throw Exception ?

Thansk for any help.