aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs')
-rw-r--r--Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs b/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs
index 32e50a219..6ed1efa88 100644
--- a/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs
+++ b/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs
@@ -1,22 +1,22 @@
-using System;
+using System;
namespace NLangDetect.Core
{
- [Serializable]
- public class InternalException : Exception
- {
- #region Constructor(s)
-
- public InternalException(string message, Exception innerException)
- : base(message, innerException)
+ [Serializable]
+ public class InternalException : Exception
{
- }
+ #region Constructor(s)
- public InternalException(string message)
- : this(message, null)
- {
- }
+ public InternalException(string message, Exception innerException)
+ : base(message, innerException)
+ {
+ }
+
+ public InternalException(string message)
+ : this(message, null)
+ {
+ }
- #endregion
- }
+ #endregion
+ }
}