mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
17 lines
271 B
Go
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
|
|
}
|