Browse Source

Merge pull request #13039 from zenador/make-anno-err-visible

Make it possible to unwrap annotation error
pull/13042/head
Björn Rabenstein 1 year ago committed by GitHub
parent
commit
e9b94515ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      util/annotations/annotations.go

4
util/annotations/annotations.go

@ -122,6 +122,10 @@ func (e annoErr) Error() string {
return fmt.Sprintf("%s (%s)", e.Err, e.PositionRange.StartPosInput(e.Query, 0))
}
func (e annoErr) Unwrap() error {
return e.Err
}
// NewInvalidQuantileWarning is used when the user specifies an invalid quantile
// value, i.e. a float that is outside the range [0, 1] or NaN.
func NewInvalidQuantileWarning(q float64, pos posrange.PositionRange) annoErr {

Loading…
Cancel
Save