tasks: simulation: better handle certain errors

This commit is contained in:
2026-01-02 15:56:28 +01:00
parent d2b10288a7
commit 4f8131b189
2 changed files with 26 additions and 15 deletions

View File

@@ -18,7 +18,8 @@ pub enum SimDataError<E> {
DecodeError(E),
EndOfStream,
UnsupportedStreamType(ExtMeta),
EventHeaderMissing
EventHeaderMissing,
PartitionNotFound
}
impl<E> From<E> for SimDataError<E> {