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

using System;

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

        public LiveTvConflictException(string message)
            : base(message)
        {
        }
    }
}