mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-01 02:18:36 -05:00
16 lines
417 B
C#
16 lines
417 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Exception thrown when µTorrent authentication fails
|
|
/// </summary>
|
|
public class UTorrentAuthenticationException : UTorrentException
|
|
{
|
|
public UTorrentAuthenticationException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public UTorrentAuthenticationException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|