|
1 | 1 | package com.capturecat.core.api.error; |
2 | 2 |
|
3 | | -import static com.capturecat.core.support.error.ErrorType.*; |
4 | | -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.*; |
| 3 | +import static com.capturecat.core.support.error.ErrorType.ALREADY_REGISTERED_TAGS; |
| 4 | +import static com.capturecat.core.support.error.ErrorType.BOOKMARK_DUPLICATION; |
| 5 | +import static com.capturecat.core.support.error.ErrorType.DUPLICATE_TAG_NAMES; |
| 6 | +import static com.capturecat.core.support.error.ErrorType.FETCH_SOCIAL_TOKEN_FAIL; |
| 7 | +import static com.capturecat.core.support.error.ErrorType.GENERATE_CLIENT_SECRET_FAIL; |
| 8 | +import static com.capturecat.core.support.error.ErrorType.IMAGE_ACCESS_DENIED; |
| 9 | +import static com.capturecat.core.support.error.ErrorType.IMAGE_DELETE_FAILED; |
| 10 | +import static com.capturecat.core.support.error.ErrorType.IMAGE_NOT_FOUND; |
| 11 | +import static com.capturecat.core.support.error.ErrorType.IMAGE_TAG_NOT_FOUND; |
| 12 | +import static com.capturecat.core.support.error.ErrorType.IMAGE_UPLOAD_FAILED; |
| 13 | +import static com.capturecat.core.support.error.ErrorType.INTERNAL_SERVER_ERROR; |
| 14 | +import static com.capturecat.core.support.error.ErrorType.INVALID_ACCESS_TOKEN; |
| 15 | +import static com.capturecat.core.support.error.ErrorType.INVALID_AUTH_TOKEN; |
| 16 | +import static com.capturecat.core.support.error.ErrorType.INVALID_DATE_FORMAT; |
| 17 | +import static com.capturecat.core.support.error.ErrorType.INVALID_ID_TOKEN; |
| 18 | +import static com.capturecat.core.support.error.ErrorType.INVALID_LOGOUT_AUTH_TOKEN; |
| 19 | +import static com.capturecat.core.support.error.ErrorType.INVALID_REFRESH_TOKEN; |
| 20 | +import static com.capturecat.core.support.error.ErrorType.REFRESH_TOKEN_EXPIRED; |
| 21 | +import static com.capturecat.core.support.error.ErrorType.SOCIAL_API_ERROR; |
| 22 | +import static com.capturecat.core.support.error.ErrorType.TOO_MANY_TAGS; |
| 23 | +import static com.capturecat.core.support.error.ErrorType.UNLINK_SOCIAL_FAIL; |
| 24 | +import static com.capturecat.core.support.error.ErrorType.UPLOAD_METADATA_MISMATCH; |
| 25 | +import static com.capturecat.core.support.error.ErrorType.USER_NOT_FOUND; |
| 26 | +import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; |
5 | 27 |
|
6 | 28 | import java.util.List; |
7 | 29 | import java.util.stream.Stream; |
|
0 commit comments