PIbd-31_Belianin.N.N_COP_8/Lab 1/Belianin_1/MyCustomComponents/Extensions/RangeException.cs

21 lines
395 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCustomComponents.Extensions
{
internal class RangeException : Exception
{
public RangeException() { }
public RangeException(string message) : base(message)
{ }
public RangeException(string message, Exception inner) : base(message, inner)
{
}
}
}