sing/common/exceptions/extend.go
2022-07-06 21:15:32 +08:00

17 lines
271 B
Go

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