aboutsummaryrefslogblamecommitdiff
path: root/errors.go
blob: 2d4ed027ba899a1bc44e859392d47af4ec5d79b3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                
package main

import (
	"errors"
)

var (
	ErrEmptyMessage      = errors.New("empty message")
	ErrIllegalByte       = errors.New("illegal byte")
	ErrTagsTooLong       = errors.New("tags too long")
	ErrInvalidTagContent = errors.New("invalid tag content")
	ErrBodyTooLong       = errors.New("body too long")
)