aboutsummaryrefslogtreecommitdiff
path: root/errors.go
blob: 7ee429a4407ce9a1444fa5e908e8fe8e483d19a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"errors"
	"strings"
)

var err_unsupported_database_type = errors.New("Unsupported database type; only \"postgres\" is currently supported")

type err_local_recipients_not_found_t []string

func (e *err_local_recipients_not_found_t) Error() string {
	return "Local recipients not found: " + strings.Join([]string(*e), ", ")
}