Files
shop/customer/errors.go
2020-04-14 16:53:52 +02:00

11 lines
190 B
Go

package customer
import (
"errors"
"github.com/foomo/shop/shop_error"
)
// ErrCustomerNotFound if customer not found
var ErrCustomerNotFound = errors.New(shop_error.ErrorNotInDatabase)