mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 09:35:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Ocelot.Errors;
 | 
						|
 | 
						|
namespace Ocelot.UnitTests.Responder
 | 
						|
{
 | 
						|
    class AnyError : Error
 | 
						|
    {
 | 
						|
        public AnyError() : base("blahh", OcelotErrorCode.UnknownError)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        public AnyError(OcelotErrorCode errorCode) : base("blah", errorCode)
 | 
						|
        {
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |