terraform-provider-google/vendor/github.com/hashicorp/terraform/tfdiags/error.go
Nathan McKinley e55e6a403f
Revert "Update hashicorp/terraform to 0.12-alpha4. (#2744)" (#2752)
This reverts commit b89618ccaa, containing
0.12-alpha4, which is broken.  Sets don't seem to work, and neither do
many resources.
2018-12-26 13:43:19 -08:00

24 lines
441 B
Go

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: e.err.Error(),
}
}
func (e nativeError) Source() Source {
// No source information available for a native error
return Source{}
}