mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-10-31 16:27:41 -04:00
27 lines
570 B
Go
27 lines
570 B
Go
|
package observatory
|
||
|
|
||
|
import "github.com/v2fly/v2ray-core/v4/common/errors"
|
||
|
|
||
|
type errorCollector struct {
|
||
|
errors *errors.Error
|
||
|
}
|
||
|
|
||
|
func (e *errorCollector) SubmitError(err error) {
|
||
|
if e.errors == nil {
|
||
|
e.errors = newError("underlying connection error").Base(err)
|
||
|
return
|
||
|
}
|
||
|
e.errors = e.errors.Base(newError("underlying connection error").Base(err))
|
||
|
}
|
||
|
|
||
|
func newErrorCollector() *errorCollector {
|
||
|
return &errorCollector{}
|
||
|
}
|
||
|
|
||
|
func (e *errorCollector) UnderlyingError() error {
|
||
|
if e.errors == nil {
|
||
|
return newError("failed to produce report")
|
||
|
}
|
||
|
return e.errors
|
||
|
}
|