blob: d657c1827af6567a6227f505cfe3786d1be34b49 [file] [log] [blame]
Pawel Wieczorekf649f222019-10-07 17:00:49 +02001package check
2
3import (
4 "errors"
5)
6
7var (
8 // ErrNotImplemented is returned when function is not implemented yet.
9 ErrNotImplemented = errors.New("function not implemented")
10)