mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace NLangDetect.Core
 | 
						|
{
 | 
						|
  public class NLangDetectException : Exception
 | 
						|
  {
 | 
						|
    #region Constructor(s)
 | 
						|
 | 
						|
    public NLangDetectException(string message, ErrorCode errorCode)
 | 
						|
      : base(message)
 | 
						|
    {
 | 
						|
      ErrorCode = errorCode;
 | 
						|
    }
 | 
						|
 | 
						|
    #endregion
 | 
						|
 | 
						|
    #region Properties
 | 
						|
 | 
						|
    public ErrorCode ErrorCode { get; private set; }
 | 
						|
 | 
						|
    #endregion
 | 
						|
  }
 | 
						|
}
 |