mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Refine format
This commit is contained in:
parent
9d88431791
commit
90beb46c6d
16 changed files with 74 additions and 143 deletions
|
@ -3,10 +3,11 @@ package exceptions
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"os"
|
||||
|
||||
F "github.com/sagernet/sing/common/format"
|
||||
)
|
||||
|
||||
type causeError struct {
|
||||
|
@ -42,15 +43,15 @@ func (e *extendedError) Unwrap() error {
|
|||
}
|
||||
|
||||
func New(message ...any) error {
|
||||
return errors.New(fmt.Sprint(message...))
|
||||
return errors.New(F.ToString(message...))
|
||||
}
|
||||
|
||||
func Cause(cause error, message ...any) error {
|
||||
return &causeError{fmt.Sprint(message...), cause}
|
||||
return &causeError{F.ToString(message...), cause}
|
||||
}
|
||||
|
||||
func Extend(cause error, message ...any) error {
|
||||
return &extendedError{fmt.Sprint(message...), cause}
|
||||
return &extendedError{F.ToString(message...), cause}
|
||||
}
|
||||
|
||||
type HasInnerError interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue