refactor: 미사용 \@Throws 제거

This commit is contained in:
이상진 2025-07-23 18:01:31 +09:00
parent ac7f9fa330
commit 52bc1940f1
2 changed files with 0 additions and 4 deletions

View File

@ -6,13 +6,11 @@ import com.fasterxml.jackson.databind.DeserializationContext
import com.fasterxml.jackson.databind.JsonNode
import com.fasterxml.jackson.databind.deser.std.StdDeserializer
import roomescape.payment.web.PaymentCancelResponse
import java.io.IOException
import java.time.OffsetDateTime
class PaymentCancelResponseDeserializer(
vc: Class<PaymentCancelResponse>? = null
) : StdDeserializer<PaymentCancelResponse>(vc) {
@Throws(IOException::class)
override fun deserialize(
jsonParser: JsonParser,
deserializationContext: DeserializationContext?

View File

@ -77,7 +77,6 @@ class TossPaymentClient(
}
}
@Throws(IOException::class)
private fun handlePaymentError(
res: ClientHttpResponse
): Nothing {
@ -92,7 +91,6 @@ class TossPaymentClient(
)
}
@Throws(IOException::class)
private fun getErrorResponse(
res: ClientHttpResponse
): TossPaymentErrorResponse {