terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-sdk/internal/tfdiags/error.go

29 lines
550 B
Go
Raw Normal View History

2022-04-03 04:07:16 +00:00
package tfdiags
// nativeError is a Diagnostic implementation that wraps a normal Go error
type nativeError struct {
err error
}
var _ Diagnostic = nativeError{}
func (e nativeError) Severity() Severity {
return Error
}
func (e nativeError) Description() Description {
return Description{
Summary: FormatError(e.err),
}
}
func (e nativeError) Source() Source {
// No source information available for a native error
return Source{}
}
func (e nativeError) FromExpr() *FromExpr {
// Native errors are not expression-related
return nil
}