Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Notifications/Gotify/GotifyException.cs
2026-02-12 18:17:09 +02:00

13 lines
298 B
C#

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