mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-22 21:01:11 -05:00
12 lines
283 B
C#
12 lines
283 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public class UTorrentException : Exception
|
|
{
|
|
public UTorrentException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public UTorrentException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |