jellyfin/Emby.Server.Implementations/TextEncoding/NLangDetect/InternalException.cs
2019-01-13 20:54:44 +01:00

23 lines
415 B
C#

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