2022-12-14 11:28:12 +00:00
|
|
|
package strfs
|
|
|
|
|
|
|
|
import (
|
2023-10-23 18:44:12 +00:00
|
|
|
"sourcecode.social/reiver/go-erorr"
|
2022-12-14 11:28:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2023-10-23 18:44:12 +00:00
|
|
|
errClosed = erorr.Error("closed")
|
|
|
|
errEmptyContent = erorr.Error("empty content")
|
|
|
|
errInternalError = erorr.Error("internal error")
|
|
|
|
errNilByteSlice = erorr.Error("nil byte slice")
|
|
|
|
errNilReader = erorr.Error("nil reader")
|
|
|
|
errNilReceiver = erorr.Error("nil receiver")
|
2022-12-14 11:28:12 +00:00
|
|
|
)
|