Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

errors.gno

0.38 Kb · 15 lines
 1package gns
 2
 3import (
 4	ufmt "gno.land/p/nt/ufmt/v0"
 5)
 6
 7const (
 8	errInvalidYear           = "[GNOSWAP-GNS-001] invalid year"
 9	errTooManyEmission       = "[GNOSWAP-GNS-002] too many emission reward"
10	errInvalidEmissionAmount = "[GNOSWAP-GNS-003] invalid emission amount"
11)
12
13func makeErrorWithDetails(message string, details string) error {
14	return ufmt.Errorf("%s || %s", message, details)
15}