mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
565 B
27 lines
565 B
package observatory
|
|
|
|
import "github.com/xtls/xray-core/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
|
|
}
|