Files
ark/server/internal/core/application/errors.go

12 lines
179 B
Go

package application
import "fmt"
type errPaymentNotFound struct {
id string
}
func (e errPaymentNotFound) Error() string {
return fmt.Sprintf("payment %s not found", e.id)
}