func IgnoreErrorWithCode()

in tools/mc2bq/pkg/gapiutil/gapiutil.go [48:54]


func IgnoreErrorWithCode(err error, code int) error {
	if IsErrorWithCode(err, code) {
		return nil
	}

	return err
}