From bfcd1b520fd79b893e721ba916ae5e1656407d2f Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 16 Aug 2017 02:43:41 -0400 Subject: merge common implementations and server implementations --- .../TextEncoding/NLangDetect/InternalException.cs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Emby.Common.Implementations/TextEncoding/NLangDetect/InternalException.cs (limited to 'Emby.Common.Implementations/TextEncoding/NLangDetect/InternalException.cs') diff --git a/Emby.Common.Implementations/TextEncoding/NLangDetect/InternalException.cs b/Emby.Common.Implementations/TextEncoding/NLangDetect/InternalException.cs deleted file mode 100644 index 32e50a219..000000000 --- a/Emby.Common.Implementations/TextEncoding/NLangDetect/InternalException.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; - -namespace NLangDetect.Core -{ - [Serializable] - public class InternalException : Exception - { - #region Constructor(s) - - public InternalException(string message, Exception innerException) - : base(message, innerException) - { - } - - public InternalException(string message) - : this(message, null) - { - } - - #endregion - } -} -- cgit v1.2.3