2025-02-26 14:36:59 +03:00

12 lines
242 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WingsOfTheWorldContratcs.Exceptions;
public class ValidationException(string message) : Exception(message)
{
}