mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
8 lines
235 B
Go
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" }
|