From 54653ceebeabaf30e89d69e0f5aa5de431cc6bd7 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 22 Sep 2022 05:54:49 -0400 Subject: Update vendor or containers/buildah Signed-off-by: Daniel J Walsh --- vendor/github.com/mistifyio/go-zfs/v3/error.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 vendor/github.com/mistifyio/go-zfs/v3/error.go (limited to 'vendor/github.com/mistifyio/go-zfs/v3/error.go') diff --git a/vendor/github.com/mistifyio/go-zfs/v3/error.go b/vendor/github.com/mistifyio/go-zfs/v3/error.go new file mode 100644 index 000000000..5408ccdb5 --- /dev/null +++ b/vendor/github.com/mistifyio/go-zfs/v3/error.go @@ -0,0 +1,18 @@ +package zfs + +import ( + "fmt" +) + +// Error is an error which is returned when the `zfs` or `zpool` shell +// commands return with a non-zero exit code. +type Error struct { + Err error + Debug string + Stderr string +} + +// Error returns the string representation of an Error. +func (e Error) Error() string { + return fmt.Sprintf("%s: %q => %s", e.Err, e.Debug, e.Stderr) +} -- cgit v1.2.3-54-g00ecf