mirror of
https://github.com/pushbits/server.git
synced 2025-04-30 10:46:55 +02:00
6 lines
158 B
Go
6 lines
158 B
Go
package pberrors
|
|
|
|
import "errors"
|
|
|
|
// ErrorMessageNotFound indicates that a message does not exist
|
|
var ErrorMessageNotFound = errors.New("message not found")
|