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 static class
FeignException.BadGateway
static class
FeignException.BadRequest
static class
FeignException.Conflict
static class
FeignException.Forbidden
static class
FeignException.GatewayTimeout
static class
FeignException.Gone
static class
FeignException.InternalServerError
static class
FeignException.MethodNotAllowed
static class
FeignException.NotAcceptable
static class
FeignException.NotFound
static class
FeignException.NotImplemented
static class
FeignException.ServiceUnavailable
static class
FeignException.TooManyRequests
static class
FeignException.Unauthorized
static class
FeignException.UnprocessableEntity
static class
FeignException.UnsupportedMediaType
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)
-