blob: 43ed63352ed9fa6aa8476f1004a22d23a414523e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2017 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package errors
import "errors"
// New is a wrapper of real errors.New function.
func New(text string) error {
return errors.New(text)
}
|