12 lines
411 B
Go
12 lines
411 B
Go
|
|
package notification
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrNotFound = fmt.Errorf("notification: not found")
|
||
|
|
ErrInvalidObjectID = fmt.Errorf("notification: invalid object id")
|
||
|
|
ErrDuplicateIdempotency = fmt.Errorf("notification: duplicate idempotency key")
|
||
|
|
ErrInvalidChannel = fmt.Errorf("notification: invalid channel")
|
||
|
|
ErrQuotaExceeded = fmt.Errorf("notification: tenant quota exceeded")
|
||
|
|
)
|