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 insertions(+) create mode 100644 Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs (limited to 'Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs') diff --git a/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs b/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs new file mode 100644 index 000000000..32e50a219 --- /dev/null +++ b/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs @@ -0,0 +1,22 @@ +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