aboutsummaryrefslogtreecommitdiffstats
path: root/test/security/k8s/src/check/errors.go
blob: d657c1827af6567a6227f505cfe3786d1be34b49 (plain)
1
2
3
4
5
6
7
8
9
10
package check

import (
	"errors"
)

var (
	// ErrNotImplemented is returned when function is not implemented yet.
	ErrNotImplemented = errors.New("function not implemented")
)