public void exceptionCaught()

in runner-core/src/main/java/org/apache/apisix/plugin/runner/handler/ExceptionCaughtHandler.java [31:35]


    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        logger.error("handle request error: ", cause);
        A6ErrResponse errResponse = new A6ErrResponse(Code.SERVICE_UNAVAILABLE);
        ctx.writeAndFlush(errResponse);
    }