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