InternalException.cs 415 B

12345678910111213141516171819202122
  1. using System;
  2. namespace NLangDetect.Core
  3. {
  4. [Serializable]
  5. public class InternalException : Exception
  6. {
  7. #region Constructor(s)
  8. public InternalException(string message, Exception innerException)
  9. : base(message, innerException)
  10. {
  11. }
  12. public InternalException(string message)
  13. : this(message, null)
  14. {
  15. }
  16. #endregion
  17. }
  18. }