Skip to content

Commit 6d26681

Browse files
committed
Add deprecation notice
Please use sethwklein.net/go/errutil instead. It provides the same features, but without the duplication of the standard errors package.
1 parent df5956e commit 6d26681

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

Diff for: DEPRECATED

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Deprecated
2+
3+
This package has been deprecated. Please use sethwklein.net/go/errutil instead.
4+
It provides the same features, but without the duplication of the standard
5+
errors package.

Diff for: README

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Deprecated
2+
3+
This package has been deprecated. Please use sethwklein.net/go/errutil instead.
4+
It provides the same features, but without the duplication of the standard
5+
errors package.
6+
17
What?
28

39
Package errors provides things for working with single and multiple errors and

Diff for: doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
// Package errors provides things for working with single and multiple errors.
22
//
3+
// This package has been deprecated. Please use sethwklein.net/go/errutil
4+
// instead. It provides the same features, but without the duplication of
5+
// the standard errors package.
6+
//
37
// It is a drop in replacement for the standard errors package
48
// but with extra features for handling multiple errors
59
// and correctly handling errors from deferred calls.

0 commit comments

Comments
 (0)