mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 09:47:56 -05:00
22 lines
484 B
Go
22 lines
484 B
Go
// Package common contains common utilities that are shared among other packages.
|
|
// See each sub-package for detail.
|
|
package common
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrObjectReleased = errors.New("Object already released.")
|
|
ErrBadConfiguration = errors.New("Bad configuration.")
|
|
ErrObjectNotFound = errors.New("Object not found.")
|
|
ErrDuplicatedName = errors.New("Duplicated name.")
|
|
)
|
|
|
|
// Must panics if err is not nil.
|
|
func Must(err error) {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|