16 lines
372 B
C#
Raw Permalink Normal View History

2023-09-21 17:03:20 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomComponents.Exceptions
{
public class NotIntegerException : Exception
{
public NotIntegerException() { }
public NotIntegerException(string message) : base(new string($"{message} is not an integer!")) { }
}
}