mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-18 00:02:05 -04: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" }
|