mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 09:58:53 -05:00
8 lines
172 B
C#
8 lines
172 B
C#
namespace Data.Models.Deluge.Exceptions;
|
|
|
|
public class DelugeClientException : Exception
|
|
{
|
|
public DelugeClientException(string message) : base(message)
|
|
{
|
|
}
|
|
} |