Client Error
data class ClientError(val reason: ClientErrorCause, val msg: String = reason.javaClass.getField(reason.name)
.getAnnotation(Description::class.java)?.value
?: "Client-side error") : KakaoSdkError
클라이언트 에러
Client errors
Constructors
Link copied to clipboard
constructor(reason: ClientErrorCause, msg: String = reason.javaClass.getField(reason.name)
.getAnnotation(Description::class.java)?.value
?: "Client-side error")