2024-10-16 13:59:02 +03:00

15 lines
324 B
C#

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