15 lines
324 B
C#
Raw Normal View History

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
{
public class CustomException: Exception
{
public CustomException() { }
public CustomException(string message) : base(message) { }
}
}