It is necessary to trace errors from fetch method: ```java private Request fetch(Request request) throws NetworkException { try { request.establishConnection(); write(request); } catch (IOException e) { throw new NetworkException(new Response(request)); } return request; } ```
It is necessary to trace errors from fetch method: