aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs
blob: 3a062a4678414d1b2abc53e8a614c64b3f71d167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

using System;

namespace MediaBrowser.Controller.LiveTv
{
    /// <summary>
    /// Class LiveTvConflictException.
    /// </summary>
    public class LiveTvConflictException : Exception
    {
        public LiveTvConflictException(string message)
            : base(message)
        {
        }
    }
}