8 lines
146 B
Go
8 lines
146 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrMeasurementNotFound when not found.
|
|
ErrMeasurementNotFound = errors.New("Measurement not found")
|
|
)
|