incus-mirror/shared/subprocess/errors.go
Nathan Chase aba6837ee4
shared/subprocess: Don't needlessly use format string functions
Signed-off-by: Nathan Chase <ntc477@utexas.edu>
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")