mirror of https://github.com/v2ray/v2ray-core
6 lines
154 B
Go
6 lines
154 B
Go
|
package common
|
||
|
|
||
|
import "v2ray.com/core/common/errors"
|
||
|
|
||
|
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("Common") }
|