errors

errors定义了一个非常简单的struct:

type errorString struct {
    s string
}

通过New方法可以创建新的error,例如:

err := errors.New("something is wrong")