mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
14 lines
219 B
Go
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
|
|
}
|