go-rfc3986/errors.go

11 lines
178 B
Go
Raw Normal View History

2023-10-07 04:08:00 +00:00
package rfc3986
import (
"sourcecode.social/reiver/go-erorr"
)
const (
2023-10-07 07:54:15 +00:00
errNilReader = erorr.Error("rfc3986: nil reader")
2023-10-07 04:08:00 +00:00
errNilWriter = erorr.Error("rfc3986: nil writer")
)