mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
12 lines
273 B
Go
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")
|