mirror of
				https://github.com/optim-enterprises-bv/Xray-core.git
				synced 2025-10-30 18:18:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			222 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			222 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package dispatcher
 | |
| 
 | |
| import "github.com/xtls/xray-core/v1/common/errors"
 | |
| 
 | |
| type errPathObjHolder struct{}
 | |
| 
 | |
| func newError(values ...interface{}) *errors.Error {
 | |
| 	return errors.New(values...).WithPathObj(errPathObjHolder{})
 | |
| }
 | 
