mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-28 15:41:39 -05:00
13 lines
313 B
C#
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)
|
|
{
|
|
}
|
|
}
|