Missing throws

This commit is contained in:
Hugh Nimmo-Smith 2022-10-18 09:34:28 +01:00
parent 57a8dd4a1f
commit 376cd1cb36
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ class SimpleHttpRendezvousTransport(rendezvousUri: String?) : RendezvousTranspor
return SimpleHttpRendezvousTransportDetails(uri) return SimpleHttpRendezvousTransportDetails(uri)
} }
@Throws(RendezvousError::class)
override suspend fun send(contentType: MediaType, data: ByteArray) { override suspend fun send(contentType: MediaType, data: ByteArray) {
if (cancelled) { if (cancelled) {
throw IllegalStateException("Rendezvous cancelled") throw IllegalStateException("Rendezvous cancelled")
@ -96,6 +97,7 @@ class SimpleHttpRendezvousTransport(rendezvousUri: String?) : RendezvousTranspor
} }
} }
@Throws(RendezvousError::class)
override suspend fun receive(): ByteArray? { override suspend fun receive(): ByteArray? {
if (cancelled) { if (cancelled) {
throw IllegalStateException("Rendezvous cancelled") throw IllegalStateException("Rendezvous cancelled")