Files
transcode/internal/errors.go
2025-02-18 16:41:05 +05:30

9 lines
252 B
Go

package internal
import "errors"
var (
ErrorElementUnallocated = errors.New("encountered nil in the buffer. this should not happen. check usage")
ErrorChannelBufferClose = errors.New("channel buffer has be closed. cannot perform this operation")
)