mirror of
https://github.com/pushbits/server.git
synced 2025-05-02 11:46:17 +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")
|