Uses of Class
feign.FeignException
-
Packages that use FeignException Package Description feign feign.codec feign.stream -
-
Uses of FeignException in feign
Subclasses of FeignException in feign Modifier and Type Class Description class
RetryableException
This exception is raised when theResponse
is deemed to be retryable, typically via anErrorDecoder
when thestatus
is 503.Methods in feign that return FeignException Modifier and Type Method Description static FeignException
FeignException. errorStatus(java.lang.String methodKey, Response response)
-
Uses of FeignException in feign.codec
Subclasses of FeignException in feign.codec Modifier and Type Class Description class
DecodeException
Similar tojavax.websocket.DecodeException
, raised when a problem occurs decoding a message.class
EncodeException
Similar tojavax.websocket.EncodeException
, raised when a problem occurs encoding a message.Methods in feign.codec that throw FeignException Modifier and Type Method Description java.lang.Object
Decoder. decode(Response response, java.lang.reflect.Type type)
Decodes an http response into an object corresponding to itsgeneric return type
. -
Uses of FeignException in feign.stream
Methods in feign.stream that throw FeignException Modifier and Type Method Description java.lang.Object
StreamDecoder. decode(Response response, java.lang.reflect.Type type)
-