encompass-cs/encompass-cs/Exceptions/IllegalSendTypeException.cs

13 lines
267 B
C#
Raw Normal View History

2019-06-16 01:55:35 +00:00
using System;
namespace Encompass.Exceptions
2019-06-16 01:55:35 +00:00
{
2019-07-19 19:47:17 +00:00
public class IllegalSendTypeException : Exception
2019-06-16 01:55:35 +00:00
{
2019-07-19 19:47:17 +00:00
public IllegalSendTypeException(
2019-06-16 01:55:35 +00:00
string format,
params object[] args
) : base(string.Format(format, args)) { }
}
}