Files
Cleanuparr/code/backend/Cleanuparr.Domain/Exceptions/NotificationTestException.cs
2026-06-16 15:26:56 +03:00

17 lines
491 B
C#

namespace Cleanuparr.Domain.Exceptions;
/// <summary>
/// Thrown when a notification provider connectivity test fails. Maps to HTTP 400 so a failed
/// test is reported as a bad request rather than an unexpected server error.
/// </summary>
public sealed class NotificationTestException : Exception
{
public NotificationTestException(string message) : base(message)
{
}
public NotificationTestException(string message, Exception inner) : base(message, inner)
{
}
}