[#71] Weighing: Fix reconnection behaviour when COM port is connected/disconnected
All checks were successful
Test / Run tests (push) Successful in 1m52s

This commit is contained in:
2026-01-03 16:22:37 +01:00
parent c45800099c
commit 5c14c06c1d
12 changed files with 131 additions and 73 deletions

View File

@@ -0,0 +1,6 @@
using System;
namespace Elwig.Helpers.Weighing {
public class WeighingException(string? message = null) : Exception(message) {
}
}