add error code
This commit is contained in:
parent
31098996a6
commit
493233a52f
|
@ -10,4 +10,5 @@ const (
|
||||||
CloudEPTweeting
|
CloudEPTweeting
|
||||||
CloudEPOrder
|
CloudEPOrder
|
||||||
CloudEPFileStorage
|
CloudEPFileStorage
|
||||||
|
CloudEPProduct
|
||||||
)
|
)
|
||||||
|
|
|
@ -54,10 +54,34 @@ func InvalidRangeWithScope(scope uint32, ec ErrorCode, s ...string) *LibError {
|
||||||
return NewError(scope, code.CatInput, ec.ToUint32(), fmt.Sprintf("invalid range: %s", strings.Join(s, " ")))
|
return NewError(scope, code.CatInput, ec.ToUint32(), fmt.Sprintf("invalid range: %s", strings.Join(s, " ")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func InvalidRangeWithScopeL(scope uint32, ec ErrorCode,
|
||||||
|
l logx.Logger, filed []logx.LogField, s ...string) *LibError {
|
||||||
|
e := InvalidRangeWithScope(scope, ec, s...)
|
||||||
|
l.WithCallerSkip(1).WithFields(filed...).Error(e.Error())
|
||||||
|
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
func InvalidFormatWithScope(scope uint32, s ...string) *LibError {
|
func InvalidFormatWithScope(scope uint32, s ...string) *LibError {
|
||||||
return NewError(scope, code.CatInput, code.InvalidFormat, fmt.Sprintf("invalid range: %s", strings.Join(s, " ")))
|
return NewError(scope, code.CatInput, code.InvalidFormat, fmt.Sprintf("invalid range: %s", strings.Join(s, " ")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func InvalidFormatWithScopeL(scope uint32,
|
||||||
|
l logx.Logger, filed []logx.LogField, s ...string) *LibError {
|
||||||
|
e := InvalidFormatWithScope(scope, s...)
|
||||||
|
l.WithCallerSkip(1).WithFields(filed...).Error(e.Error())
|
||||||
|
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
func ForbiddenWithScope(scope uint32, ec ErrorCode, s ...string) *LibError {
|
func ForbiddenWithScope(scope uint32, ec ErrorCode, s ...string) *LibError {
|
||||||
return NewError(scope, code.Forbidden, ec.ToUint32(), fmt.Sprintf("forbidden: %s", strings.Join(s, " ")))
|
return NewError(scope, code.Forbidden, ec.ToUint32(), fmt.Sprintf("forbidden: %s", strings.Join(s, " ")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ForbiddenWithScopeL(scope uint32, ec ErrorCode,
|
||||||
|
l logx.Logger, filed []logx.LogField, s ...string) *LibError {
|
||||||
|
e := ForbiddenWithScope(scope, ec, s...)
|
||||||
|
l.WithCallerSkip(1).WithFields(filed...).Error(e.Error())
|
||||||
|
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue