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,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
}
}