hookserrors

package
v1.4.0 Latest Latest
Warning

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

Go to latest
Published: Aug 15, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package hookserrors holds the Error type and some functions to Check responses for errors.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Check

func Check(b []byte) error

Check will attempt to extract a hook Error from a byte slice and return a non-nil error, otherwise Check returns nil if no error was found.

Types

type Error

type Error struct {
	HTTPCode int    `json:"http_code,omitempty"`
	Message  string `json:"message,omitempty"`
}

Error is the type propagated by hook endpoints to communicate failure.

func (*Error) As

func (e *Error) As(target any) bool

As implements the errors.As interface to allow unwrapping as either an Error or apierrors.HTTPError, depending on the needs of the caller.

func (*Error) Error

func (e *Error) Error() string

Error implements the error interface by returning e.Message.

Jump to

Keyboard shortcuts

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