diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-11 17:16:56 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-11 17:16:56 +0200 |
commit | 83b07678994d774ebc22cf387229ed7620d7708e (patch) | |
tree | 8b5371c47c1eb9c47ed1f23c42dc51a1053c70a7 /lib/stream.ml | |
parent | ddf8091355e2093343fa73675358548389da93a3 (diff) |
feat(stream): add ClosedStream exception
Diffstat (limited to 'lib/stream.ml')
-rw-r--r-- | lib/stream.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stream.ml b/lib/stream.ml index 8c7a8f3..25b6822 100644 --- a/lib/stream.ml +++ b/lib/stream.ml @@ -1,5 +1,6 @@ open Lwt.Syntax +exception ClosedStream exception InvalidStanza of string let start domain : Portal.t Lwt.t = |