**Describe the bug** ```kotlin private suspend fun onRequest(request: JSONRPCRequest) { …. transport!!.send( JSONRPCResponse( id = [request.id](http://request.id/), error = JSONRPCError( ErrorCode.Defined.InternalError, message = cause.message ?: "Internal error", ) ) ) } ```