2025-02-09 12:45:02 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2025-02-09 15:17:40 +04:00
|
|
|
|
namespace MagicCarpetContracts.Exceptions;
|
2025-02-09 12:45:02 +04:00
|
|
|
|
|
|
|
|
|
public class ValidationException(string message) : Exception(message)
|
|
|
|
|
{
|
|
|
|
|
}
|