go-jsonstr/errors.go

15 lines
270 B
Go
Raw Normal View History

2023-09-27 00:12:51 +00:00
package jsonstr
import (
"sourcecode.social/reiver/go-erorr"
)
const (
ErrNotJSONArrayOfString = erorr.Error("jsonstr: not JSON array of strings")
)
const (
errNilReceiver = erorr.Error("jsonstr: nil receiver")
errNilData = erorr.Error("jsonstr: nil data")
)