Files
Cleanuparr/code/backend/Cleanuparr.Domain/Exceptions/UTorrentException.cs
2025-07-28 23:09:19 +03:00

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)
{
}
}