mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 12:14:21 +01:00
12 lines
179 B
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)
|
|
}
|