PIbd-31_PotapovNS_COP_20/WinFormSolution/Components/Exceptions/ValueOutOfRangeException.cs

9 lines
227 B
C#
Raw Normal View History

namespace Components.Exceptions
{
public class ValueOutOfRangeException : Exception
{
public ValueOutOfRangeException() { }
public ValueOutOfRangeException(string message) : base(message) { }
}
}