mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-08 16:00:06 -04:00
13 lines
430 B
Go
13 lines
430 B
Go
package sperr
|
|
|
|
// Formatted printing of errors
|
|
//
|
|
// All error values returned from this package implement fmt.Formatter and can
|
|
// be formatted by the fmt package. The following verbs are supported:
|
|
//
|
|
// %s print the error. If the error has a Cause it will be
|
|
// printed recursively.
|
|
// %v see %s
|
|
// %+v extended format. Each Frame of the error's StackTrace will
|
|
// be printed in detail.
|