mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 01:39:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			218 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			218 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package core
 | |
| 
 | |
| import "github.com/v2fly/v2ray-core/v4/common/errors"
 | |
| 
 | |
| type errPathObjHolder struct{}
 | |
| 
 | |
| func newError(values ...interface{}) *errors.Error {
 | |
| 	return errors.New(values...).WithPathObj(errPathObjHolder{})
 | |
| }
 | 
