mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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
 | 
						|
  }
 | 
						|
}
 |