errors

package
v1.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 19, 2022 License: BSD-2-Clause Imports: 2 Imported by: 186

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DefaultPanicHandler added in v1.3.0

type DefaultPanicHandler struct{}

DefaultPanicHandler is the default PanicHandler

func (*DefaultPanicHandler) MakePanicError added in v1.3.0

func (h *DefaultPanicHandler) MakePanicError(ctx context.Context, value interface{}) *QueryError

MakePanicError creates a new QueryError from a panic that occurred during execution

type Location

type Location struct {
	Line   int `json:"line"`
	Column int `json:"column"`
}

func (Location) Before

func (a Location) Before(b Location) bool

type PanicHandler added in v1.3.0

type PanicHandler interface {
	MakePanicError(ctx context.Context, value interface{}) *QueryError
}

PanicHandler is the interface used to create custom panic errors that occur during query execution

type QueryError

type QueryError struct {
	Err           error                  `json:"-"` // Err holds underlying if available
	Message       string                 `json:"message"`
	Locations     []Location             `json:"locations,omitempty"`
	Path          []interface{}          `json:"path,omitempty"`
	Rule          string                 `json:"-"`
	ResolverError error                  `json:"-"`
	Extensions    map[string]interface{} `json:"extensions,omitempty"`
}

func Errorf

func Errorf(format string, a ...interface{}) *QueryError

func (*QueryError) Error

func (err *QueryError) Error() string

func (*QueryError) Unwrap added in v1.1.0

func (err *QueryError) Unwrap() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL