com.tairitsu.ignotus.exception.business.RequestBodyIsNotValidJsonException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignotus-exception Show documentation
Show all versions of ignotus-exception Show documentation
JSON:API like exception handler.
package com.tairitsu.ignotus.exception.business
import com.tairitsu.ignotus.exception.SingleApiException
/**
* 业务异常:请求体不是有效的 JSON 格式
*/
class RequestBodyIsNotValidJsonException : SingleApiException(400, CODE, Translation.translateDetail(CODE)) {
companion object {
const val CODE = "request_body_is_not_json"
}
init {
this.title = Translation.translateTitle(CODE)
}
}