Last active
June 27, 2020 23:11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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