encompass-cs/encompass-cs/Exceptions/IllegalReadTypeException.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
{
public class IllegalReadTypeException : Exception
2019-06-16 01:55:35 +00:00
{
public IllegalReadTypeException(
2019-06-16 01:55:35 +00:00
string format,
params object[] args
) : base(string.Format(format, args)) { }
}
}