Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Notifications/Telegram/TelegramException.cs
2026-01-03 23:34:05 +02:00

13 lines
313 B
C#

namespace Cleanuparr.Infrastructure.Features.Notifications.Telegram;
public sealed class TelegramException : Exception
{
public TelegramException(string message) : base(message)
{
}
public TelegramException(string message, Exception innerException) : base(message, innerException)
{
}
}