]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/hashicorp/terraform/tfdiags/error.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / tfdiags / error.go
CommitLineData
15c0b25d
AP
1package tfdiags
2
3// nativeError is a Diagnostic implementation that wraps a normal Go error
4type nativeError struct {
5 err error
6}
7
8var _ Diagnostic = nativeError{}
9
10func (e nativeError) Severity() Severity {
11 return Error
12}
13
14func (e nativeError) Description() Description {
15 return Description{
107c1cdb 16 Summary: FormatError(e.err),
15c0b25d
AP
17 }
18}
19
20func (e nativeError) Source() Source {
21 // No source information available for a native error
22 return Source{}
23}
107c1cdb
ND
24
25func (e nativeError) FromExpr() *FromExpr {
26 // Native errors are not expression-related
27 return nil
28}