aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs')
-rw-r--r--MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs b/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs
new file mode 100644
index 000000000..a7735ad80
--- /dev/null
+++ b/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace MediaBrowser.Controller.LiveTv
+{
+ /// <summary>
+ /// Class LiveTvConflictException.
+ /// </summary>
+ public class LiveTvConflictException : Exception
+ {
+ public LiveTvConflictException()
+ {
+
+ }
+ public LiveTvConflictException(string message)
+ : base(message)
+ {
+
+ }
+ }
+} \ No newline at end of file