mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
13 lines
309 B
C#
13 lines
309 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Host.Owin
|
|
{
|
|
public class PortInUseException : NzbDroneException
|
|
{
|
|
public PortInUseException(string message, Exception innerException, params object[] args) : base(message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|