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

23 lines
370 B
C#
Raw Normal View History

2017-06-17 18:59:17 -04:00
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
}
}