mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-18 02:39:30 +00:00
4a1927f2f3
Update K8s packages in go.mod to v0.32.0 Signed-off-by: Praveen M <m.praveen@ibm.com>
19 lines
368 B
Go
19 lines
368 B
Go
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)
|
|
}
|