encompass-cs/encompass-cs/Exceptions/UndefinedLayerException.cs

13 lines
265 B
C#
Raw Permalink Normal View History

2019-12-16 07:28:02 +00:00
using System;
namespace Encompass.Exceptions
{
public class UndefinedLayerException : Exception
{
public UndefinedLayerException(
string format,
params object[] args
) : base(string.Format(format, args)) { }
}
}