You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
370 B
23 lines
370 B
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
|
|
}
|
|
}
|