2024-09-20 01:03:13 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-10-16 13:59:02 +03:00
|
|
|
|
namespace BarsukovComponents.Exceptions
|
2024-09-20 01:03:13 +03:00
|
|
|
|
{
|
|
|
|
|
public class CustomException: Exception
|
|
|
|
|
{
|
|
|
|
|
public CustomException() { }
|
|
|
|
|
public CustomException(string message) : base(message) { }
|
|
|
|
|
}
|
|
|
|
|
}
|