mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-05 17:22:46 +01:00
18 lines
336 B
C#
18 lines
336 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
/// <summary>
|
|
/// Class LiveTvException.
|
|
/// </summary>
|
|
public class LiveTvException : Exception
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Class LiveTvConflictException.
|
|
/// </summary>
|
|
public class LiveTvConflictException : LiveTvException
|
|
{
|
|
}
|
|
}
|