This commit is contained in:
世界 2022-05-03 16:23:34 +08:00
parent fb8de18b9d
commit d42354ab19
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
19 changed files with 159 additions and 293 deletions

View file

@ -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}
}