12 lines
369 B
Go
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")
|
|
)
|