opentofu/terraform/eval_error.go
2020-09-29 15:01:24 -04:00

8 lines
235 B
Go

package terraform
// EvalEarlyExitError is a special error return value that can be returned
// by eval nodes that does an early exit.
type EvalEarlyExitError struct{}
func (EvalEarlyExitError) Error() string { return "early exit" }