encompass-cs/encompass-cs/Exceptions/DetectorWithoutComponentTyp...

13 lines
298 B
C#

using System;
namespace Encompass.Exceptions
{
public class DetectorWithoutComponentTypesException : Exception
{
public DetectorWithoutComponentTypesException(
string format,
params object[] args
) : base(string.Format(format, args)) { }
}
}