1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-07 06:46:28 +01:00
Files
incus/shared/subprocess/errors.go
Stéphane Graber 72f25dbd4e shared/subprocess: Better handle not running
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
2020-01-28 17:34:07 -05:00

9 lines
181 B
Go

package subprocess
import (
"fmt"
)
// ErrNotRunning is returned when performing an action against a stopped process.
var ErrNotRunning = fmt.Errorf("The process isn't running")