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

23 lines
418 B
C#
Raw Normal View History

2017-06-17 18:59:17 -04:00
using System;
namespace NLangDetect.Core
{
[Serializable]
public class InternalException : Exception
2017-06-17 18:59:17 -04:00
{
#region Constructor(s)
2017-06-17 18:59:17 -04:00
public InternalException(string message, Exception innerException)
: base(message, innerException)
{
}
public InternalException(string message)
: this(message, null)
{
}
2017-06-17 18:59:17 -04:00
#endregion
}
2017-06-17 18:59:17 -04:00
}