Files
elwig/Elwig/Helpers/Weighing/WeighingException.cs
2026-01-03 16:22:37 +01:00

7 lines
133 B
C#

using System;
namespace Elwig.Helpers.Weighing {
class WeighingException(string? message = null) : Exception(message) {
}
}