// Code generated by https://github.com/zhufuyi/sponge

package ecode

import (
	"github.com/zhufuyi/sponge/pkg/errcode"
)

// collectService business-level http error codes.
// the collectServiceNO value range is 1~100, if the same number appears, it will cause a failure to start the service.
var (
	collectServiceNO       = 1
	collectServiceName     = "collectService"
	collectServiceBaseCode = errcode.HCode(collectServiceNO)

	ErrCreateCollectService = errcode.NewError(collectServiceBaseCode+1, "failed to Create "+collectServiceName)
	ErrDeleteCollectService = errcode.NewError(collectServiceBaseCode+2, "failed to Delete "+collectServiceName)
	ErrListCollectService   = errcode.NewError(collectServiceBaseCode+3, "failed to List "+collectServiceName)
	// error codes are globally unique, adding 1 to the previous error code
)