mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-23 04:51:39 +08:00
10 lines
185 B
Go
10 lines
185 B
Go
package errors
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/httperrors"
|
|
)
|
|
|
|
func NewArgIsEmptyErr(name string) error {
|
|
return httperrors.NewInputParameterError("parameter %s is empty", name)
|
|
}
|