Files
jellyfin-jellyfin-1/Emby.Server.Implementations/TextEncoding/NLangDetect/NLangDetectException.cs

24 lines
420 B
C#
Raw Normal View History

using System;
2017-06-17 18:59:17 -04:00
namespace NLangDetect.Core
{
public class NLangDetectException : Exception
2017-06-17 18:59:17 -04:00
{
#region Constructor(s)
2017-06-17 18:59:17 -04:00
public NLangDetectException(string message, ErrorCode errorCode)
: base(message)
{
ErrorCode = errorCode;
}
2017-06-17 18:59:17 -04:00
#endregion
2017-06-17 18:59:17 -04:00
#region Properties
2017-06-17 18:59:17 -04:00
public ErrorCode ErrorCode { get; private set; }
#endregion
}
2017-06-17 18:59:17 -04:00
}