diff --git a/common/exceptions/error.go b/common/exceptions/error.go index 64b6468..a1bada7 100644 --- a/common/exceptions/error.go +++ b/common/exceptions/error.go @@ -17,7 +17,7 @@ type Handler interface { } type MultiError interface { - UnwrapMulti() []error + Unwrap() []error } func New(message ...any) error { diff --git a/common/exceptions/multi.go b/common/exceptions/multi.go index 16e3a00..a42f00c 100644 --- a/common/exceptions/multi.go +++ b/common/exceptions/multi.go @@ -16,7 +16,7 @@ func (e *multiError) Error() string { return strings.Join(F.MapToString(e.errors), " | ") } -func (e *multiError) UnwrapMulti() []error { +func (e *multiError) Unwrap() []error { return e.errors } @@ -37,7 +37,7 @@ func Errors(errors ...error) error { func Expand(err error) []error { if multiErr, isMultiErr := err.(MultiError); isMultiErr { - return ExpandAll(multiErr.UnwrapMulti()) + return ExpandAll(multiErr.Unwrap()) } return []error{err} } @@ -64,7 +64,7 @@ func IsMulti(err error, targetList ...error) bool { if !isMulti { return false } - return common.All(multiErr.UnwrapMulti(), func(it error) bool { + return common.All(multiErr.Unwrap(), func(it error) bool { return IsMulti(it, targetList...) }) }