[#71] Weighing: Fix reconnection behaviour when COM port is connected/disconnected
Some checks failed
Test / Run tests (push) Failing after 2m47s

This commit is contained in:
2026-01-03 16:22:37 +01:00
parent c45800099c
commit d2bc2f894f
7 changed files with 112 additions and 54 deletions

View File

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