Documentation ¶
Overview ¶
Package errors defines shared types for handling CUE errors.
The pivotal error type in CUE packages is the interface type Error. The information available in such errors can be most easily retrieved using the Path, Positions, and Print functions.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Details ¶ added in v0.0.12
Details is a convenience wrapper for Print to return the error text as a string.
func New ¶
New is a convenience wrapper for errors.New in the core library. It does not return a CUE error.
func Positions ¶
Positions returns all positions returned by an error, sorted by relevance when possible and with duplicates removed.
Types ¶
type Config ¶
type Config struct { // Format formats the given string and arguments and writes it to w. // It is used for all printing. Format func(w io.Writer, format string, args ...interface{}) // Cwd is the current working directory. Filename positions are taken // relative to this path. Cwd string // ToSlash sets whether to use Unix paths. Mostly used for testing. ToSlash bool }
A Config defines parameters for printing.
type Error ¶
type Error interface { // Position returns the primary position of an error. If multiple positions // contribute equally, this reflects one of them. Position() token.Pos // InputPositions reports positions that contributed to an error, including // the expressions resulting in the conflict, as well as values that were // the input to this expression. InputPositions() []token.Pos // Error reports the error message without position information. Error() string // Path returns the path into the data tree where the error occurred. // This path may be nil if the error is not associated with such a location. Path() []string // Msg returns the unformatted error message and its arguments for human // consumption. Msg() (format string, args []interface{}) }
Error is the common error message.
func Errors ¶ added in v0.0.4
Errors reports the individual errors associated with an error, which is the error itself if there is only one or, if the underlying type is List, its individual elements. If the given error is not an Error, it will be promoted to one.
func Promote ¶ added in v0.0.4
Promote converts a regular Go error to an Error if it isn't already one.
type Message ¶
type Message struct {
// contains filtered or unexported fields
}
A Message implements the error interface as well as Message to allow internationalized messages. A Message is typically used as an embedding in a CUE message.
func NewMessage ¶
NewMessage creates an error message for human consumption. The arguments are for later consumption, allowing the message to be localized at a later time. The passed argument list should not be modified.