mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-19 23:38:01 -05:00
13 lines
295 B
C#
13 lines
295 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public class RTorrentClientException : Exception
|
|
{
|
|
public RTorrentClientException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public RTorrentClientException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|