func()

in internal/gitlab/client.go [36:44]


func (er *ErrorResponse) Error() string {
	err := fmt.Sprintf("API Error Response status_code: %d message: %s", er.statusCode, er.Message)

	if er.Err != "" {
		return fmt.Sprintf("%s error: %s", err, er.Err)
	}

	return err
}