MCPcopy Index your code
hub / github.com/OpenFeign/feign / FeignException

Method FeignException

core/src/main/java/feign/FeignException.java:49–53  ·  view source on GitHub ↗
(int status, String message, Throwable cause)

Source from the content-addressed store, hash-verified

47 private final Request request;
48
49 protected FeignException(int status, String message, Throwable cause) {
50 super(message, cause);
51 this.status = status;
52 this.request = null;
53 }
54
55 protected FeignException(
56 int status,

Callers

nothing calls this directly

Calls 2

checkRequestNotNullMethod · 0.95
caseInsensitiveCopyOfMethod · 0.80

Tested by

no test coverage detected