5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 04:36:17 +00:00

12 lines
273 B
Go

package runtime
import (
"errors"
)
// ErrStackOverflow is a stack overflow error.
var ErrStackOverflow = errors.New("stack overflow")
// ErrObjectAllocLimit is an objects allocation limit error.
var ErrObjectAllocLimit = errors.New("object allocation limit exceeded")