add subtitle language detection

This commit is contained in:
Luke Pulverenti
2017-06-17 18:59:17 -04:00
parent c9d7eb9b04
commit 0e7cbb0465
76 changed files with 2256 additions and 26 deletions

View File

@@ -0,0 +1,23 @@
using System;
namespace NLangDetect.Core
{
public class NLangDetectException : Exception
{
#region Constructor(s)
public NLangDetectException(string message, ErrorCode errorCode)
: base(message)
{
ErrorCode = errorCode;
}
#endregion
#region Properties
public ErrorCode ErrorCode { get; private set; }
#endregion
}
}