mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 22:10:11 -04:00
12 lines
291 B
C#
12 lines
291 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public class DelugeClientException : Exception
|
|
{
|
|
public DelugeClientException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public DelugeClientException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |