@ResponseStatus(value = HttpStatus.OK, reason = RequestNotYetFinishedException.MSG)
class RequestNotYetFinishedException : RuntimeException() {
    companion object {
        const val MSG = "request is not yet finished"
    }