mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fixes
This commit is contained in:
parent
fb8de18b9d
commit
d42354ab19
19 changed files with 159 additions and 293 deletions
|
@ -42,14 +42,7 @@ func New(message ...any) error {
|
|||
return errors.New(fmt.Sprint(message...))
|
||||
}
|
||||
|
||||
func Cause(cause error, message string) Exception {
|
||||
if cause == nil {
|
||||
return nil
|
||||
}
|
||||
return exception{message, cause}
|
||||
}
|
||||
|
||||
func CauseF(cause error, message ...any) Exception {
|
||||
func Cause(cause error, message ...any) Exception {
|
||||
return exception{fmt.Sprint(message), cause}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue