mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-23 13:09:30 -04:00
17 lines
491 B
C#
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)
|
|
{
|
|
}
|
|
}
|