12 lines
236 B
C#
Raw Normal View History

2025-02-04 13:48:50 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PapaCarloContracts.Exceptions;
public class ValidationException(string message) : Exception(message)
{
}