terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-sdk/internal/tfdiags/sourceless.go
Malar Invention 00ebcd295e add vendor
2022-04-03 09:37:16 +05:30

14 lines
443 B
Go

package tfdiags
// Sourceless creates and returns a diagnostic with no source location
// information. This is generally used for operational-type errors that are
// caused by or relate to the environment where Terraform is running rather
// than to the provided configuration.
func Sourceless(severity Severity, summary, detail string) Diagnostic {
return diagnosticBase{
severity: severity,
summary: summary,
detail: detail,
}
}