package
0.7.5
Repository: https://github.com/infiniteloopcloud/go.git
Documentation: pkg.go.dev

# README

Weird error

Yet another error management tool

Usage

package main

import (
	"errors"
	
	"gitlab.com/infiniteloopcloud/weird"
)

var ErrTest = errors.New("test error")

func main() {
	err := weird.New("Message returned over HTTP", ErrTest, 402)
	
	errors.Is(err, ErrTest)
	// returns true
}

# Functions

No description provided by the author
No description provided by the author

# Structs

Error is the main error handling representation, the usage.