dnscontrol/providers/cnr/error.go

12 lines
378 B
Go

package cnr
import (
"fmt"
"github.com/centralnicgroup-opensource/rtldev-middleware-go-sdk/v5/response"
)
// GetCNRApiError returns an error including API error code and error description.
func (n *CNRClient) GetCNRApiError(format string, objectid string, r *response.Response) error {
return fmt.Errorf(format+" %q. [%v %s]", objectid, r.GetCode(), r.GetDescription())
}