mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-05 20:01:57 -05:00
25 lines
600 B
Go
25 lines
600 B
Go
package rego
|
|
|
|
// HaltError is an error type to return from a custom function implementation
|
|
// that will abort the evaluation process (analogous to topdown.Halt).
|
|
type HaltError struct {
|
|
err error
|
|
}
|
|
|
|
// Error delegates to the wrapped error
|
|
func (h *HaltError) Error() string {
|
|
return h.err.Error()
|
|
}
|
|
|
|
// NewHaltError wraps an error such that the evaluation process will stop
|
|
// when it occurs.
|
|
func NewHaltError(err error) error {
|
|
return &HaltError{err: err}
|
|
}
|
|
|
|
// ErrorDetails interface is satisfied by an error that provides further
|
|
// details.
|
|
type ErrorDetails interface {
|
|
Lines() []string
|
|
}
|