1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00
Files
incus/shared/subprocess/errors.go
2025-05-23 01:42:42 -04:00

11 lines
205 B
Go

//go:build !windows
package subprocess
import (
"errors"
)
// ErrNotRunning is returned when performing an action against a stopped process.
var ErrNotRunning = errors.New("The process isn't running")