Files
pmg/sandbox/errors.go
T

13 lines
390 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")
ErrPresetNotFound = errors.New("sandbox preset not found")
ErrPresetInvalid = errors.New("sandbox preset invalid")
)