sing/common/exceptions/cause.go
2023-07-03 08:21:04 +08:00

14 lines
219 B
Go

package exceptions
type causeError struct {
message string
cause error
}
func (e *causeError) Error() string {
return e.message + ": " + e.cause.Error()
}
func (e *causeError) Unwrap() error {
return e.cause
}