feat: add ErrNoSuchMessage to pmapi

This commit is contained in:
James Houlahan
2020-04-16 17:32:30 +02:00
committed by Jakub Cuth
parent d1e63254f2
commit e1ecc11f38
5 changed files with 12 additions and 1 deletions

View File

@ -56,6 +56,8 @@ var (
ErrInvalidToken = errors.New("refresh token invalid")
ErrAPINotReachable = errors.New("cannot reach the server")
ErrUpgradeApplication = errors.New("application upgrade required")
ErrNoSuchMessage = errors.New("no such message")
)
type ErrUnauthorized struct {