platoff aeeee 7d7ce6cb91 try2
2024-09-17 12:41:48 +04:00

16 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Library15Gerimovich.Exceptions
{
public class MalformedRealException : ApplicationException
{
public MalformedRealException()
: base("Введенное значение не является вещественным")
{ }
}
}