aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:22:56 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:22:56 +0100
commit25f0315e918cf6f8c26b1e435c236ff1dbcbc6a5 (patch)
tree805191d28c22edcaf31ffb03ba355f5fbbc1c3da /Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs
parent0efc699e3d4cef2cb5b36223873fa5ad98177d1c (diff)
Visual Studio Reformat: Emby.Server.Implementations Part T-T
Diffstat (limited to 'Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs')
-rw-r--r--Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs b/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs
index e0d066020..99825bcf3 100644
--- a/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs
+++ b/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs
@@ -2,22 +2,22 @@
namespace NLangDetect.Core
{
- public class NLangDetectException : Exception
- {
- #region Constructor(s)
-
- public NLangDetectException(string message, ErrorCode errorCode)
- : base(message)
+ public class NLangDetectException : Exception
{
- ErrorCode = errorCode;
- }
+ #region Constructor(s)
- #endregion
+ public NLangDetectException(string message, ErrorCode errorCode)
+ : base(message)
+ {
+ ErrorCode = errorCode;
+ }
- #region Properties
+ #endregion
- public ErrorCode ErrorCode { get; private set; }
+ #region Properties
- #endregion
- }
+ public ErrorCode ErrorCode { get; private set; }
+
+ #endregion
+ }
}