PIbd-31_Danilov_V_V_COP-30/Components/Exception/NotIntegerException.cs

14 lines
274 B
C#
Raw Permalink Normal View History

2024-10-03 21:07:20 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Components.Exceptions
{
internal class NotIntegerException: Exception
{
public NotIntegerException(string message) : base(message) { }
}
}