Files
pmg/sandbox/errors.go
T

11 lines
270 B
Go
Raw Normal View History

package sandbox
import "errors"
// Wrap these with %w so cmd-layer code can classify via errors.Is
// instead of inspecting message text.
var (
ErrProfileNotFound = errors.New("sandbox profile not found")
ErrProfileInvalid = errors.New("sandbox profile invalid")
)