mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-30 17:39:03 -05:00
8 lines
171 B
C#
8 lines
171 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public class DelugeClientException : Exception
|
|
{
|
|
public DelugeClientException(string message) : base(message)
|
|
{
|
|
}
|
|
} |