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