Status4XX
abstract class Status4XX(val status: Int, val path: String, val requestBody: String?, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.RequestIsWrong) : RestResponse
Inheritors
Constructors
Link copied to clipboard
constructor(status: Int, path: String, requestBody: String?, responseCategory: RestResponse.ResponseCategory = ResponseCategory.RequestIsWrong)
Types
Link copied to clipboard
class BadRequest(val bytes: ByteArray, val path: String, val requestBody: String?) : RestResponse.Status4XX
Link copied to clipboard
class TooManyRequests(val bytes: ByteArray, val path: String, val requestBody: String?) : RestResponse.Status4XX
Link copied to clipboard
class UnAuthorized(val bytes: ByteArray, val path: String, val requestBody: String?) : RestResponse.Status4XX