19 lines
336 B
C#
19 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
|
|||
|
{
|
|||
|
}
|
|||
|
}
|