PIbd-31_Afanasev.S.S._COP_5/Component/ComponentProgramming/Exceptions/WrongRangeException.cs
2024-10-04 00:24:05 +04:00

17 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComponentProgramming.Exceptions
{
public class WrongRangeException : Exception
{
public WrongRangeException() { }
public WrongRangeException(string message) : base(message) { }
public WrongRangeException(string message, Exception inner) : base(message, inner) { }
}
}