mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
14 lines
162 B
Go
14 lines
162 B
Go
package jiracli
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
type Error struct {
|
|
error
|
|
}
|
|
|
|
func CliError(cause error) error {
|
|
return &Error{
|
|
errors.WithStack(cause),
|
|
}
|
|
}
|