mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 16:21:08 +01: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
 | |
|   }
 | |
| }
 |