mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-08-31 03:05:43 +08:00
1
This commit is contained in:
parent
0f4170907f
commit
231e0adea1
@ -2,11 +2,10 @@ package constant
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
sdkws "Open_IM/pkg/proto/sdk_ws"
|
sdkws "Open_IM/pkg/proto/sdk_ws"
|
||||||
"Open_IM/pkg/utils"
|
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/pkg/errors"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -25,11 +24,11 @@ func (e *ErrInfo) Code() int32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (e *ErrInfo) Warp() error {
|
func (e *ErrInfo) Warp() error {
|
||||||
return utils.Wrap(e, "")
|
return errors.WithStack(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *ErrInfo) WarpMessage(msg string) error {
|
func (e *ErrInfo) WarpMessage(msg string) error {
|
||||||
return utils.Wrap(e, msg)
|
return errors.WithMessage(e, "")
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewErrNetwork(err error) error {
|
func NewErrNetwork(err error) error {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user