aboutsummaryrefslogtreecommitdiff
path: root/errors.go
blob: da4d028c4918d8a305ad4ec368451b14bb838a5b (plain) (blame)
1
2
3
4
5
6
7
8
package main

import (
	"errors"
)

var err_deliver_write = errors.New("unable to write to filesystem while attempting to deliver message")
var err_unsupported_database_type = errors.New("unsupported database type; only \"postgres\" is currently supported")