mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
18 lines
368 B
Go
18 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)
|
|
}
|