11 lines
141 B
C#
11 lines
141 B
C#
using System;
|
|
|
|
namespace Xylem.Common.CommonCore.Exceptions
|
|
{
|
|
interface ICommonException
|
|
{
|
|
String GetHelpText();
|
|
|
|
}
|
|
}
|