COP_Petrushin_PIbd-32/Library14Petrushin/Exception/RangeException.cs
2024-09-15 23:31:11 +04:00

16 lines
411 B
C#

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