Skip to content

Instantly share code, notes, and snippets.

@donchan922
Last active June 27, 2020 23:11
RestClientException (RestTemplateが投げる例外のベースとなるクラス)
├── RestClientResponseException (HTTPレスポンスデータを含む例外のベースとなるクラス)
│   ├── HttpStatusCodeException (ステータスコードに基づく例外の抽象クラス)
│ │ ├── HttpClientErrorException (4xx系のステータスコードを受信したとき)
│   │ └── HttpServerErrorException (5xx系のステータスコードを受信したとき)
│ └── UnknownHttpStatusCodeException (不明なステータスコードを受信したとき)
└── ResourceAccessException (I/Oエラーが発生したとき)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment