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