mirror of https://github.com/v2ray/v2ray-core
8 lines
172 B
Go
8 lines
172 B
Go
|
package internet
|
||
|
|
||
|
import "v2ray.com/core/common/errors"
|
||
|
|
||
|
func newError(values ...interface{}) *errors.Error {
|
||
|
return errors.New(values...).Path("Transport", "Internet")
|
||
|
}
|