IncompleteStreamException

class IncompleteStreamException(message: String = "Stream completed without receiving an End frame", cause: Throwable? = null) : Exception(source)

Signals that a streaming response terminated without receiving a StreamFrame.End frame.

This typically indicates a dropped network connection during SSE streaming, where the underlying transport (e.g., Ktor SSE) completes the flow normally instead of propagating an error.

Constructors

Link copied to clipboard
constructor(message: String = "Stream completed without receiving an End frame", cause: Throwable? = null)

Properties

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard
expect open val message: String?