Files
mfer/vendor/github.com/pterm/pterm/errors.go
2022-02-01 21:36:27 -08:00

12 lines
369 B
Go

package pterm
import "errors"
var (
// ErrTerminalSizeNotDetectable - the terminal size can not be detected and the fallback values are used.
ErrTerminalSizeNotDetectable = errors.New("terminal size could not be detected - using fallback value")
// ErrHexCodeIsInvalid - the given HEX code is invalid.
ErrHexCodeIsInvalid = errors.New("hex code is not valid")
)