Initial commit

This commit is contained in:
世界 2022-01-29 03:25:38 +08:00
commit 5cc189a169
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
32 changed files with 2565 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package exceptions
import (
"errors"
"fmt"
)
type Exception interface {
error
Cause() error
}
type exception struct {
message string
cause error
}
func (e exception) Error() string {
if e.cause == nil {
return e.message
}
return e.message + ":" + e.cause.Error()
}
func (e exception) Cause() error {
return e.cause
}
func New(message ...any) error {
return errors.New(fmt.Sprint(message...))
}
func Cause(cause error, message ...any) Exception {
return &exception{fmt.Sprint(message...), cause}
}