12 lines
242 B
C#
Raw Permalink Normal View History

2025-02-26 14:36:59 +03:00
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)
{
}