terraform-provider-gitea/vendor/github.com/hashicorp/terraform-registry-address/errors.go

15 lines
191 B
Go
Raw Normal View History

package tfaddr
import (
"fmt"
)
type ParserError struct {
Summary string
Detail string
}
func (pe *ParserError) Error() string {
return fmt.Sprintf("%s: %s", pe.Summary, pe.Detail)
}