laatzen/Common/CommonCore/Exceptions/ICommonException.cs
2022-08-24 11:42:44 +02:00

11 lines
141 B
C#

using System;
namespace Xylem.Common.CommonCore.Exceptions
{
interface ICommonException
{
String GetHelpText();
}
}