diff options
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,7 +5,10 @@ import ( "strings" ) -var err_unsupported_database_type = errors.New("Unsupported database type; only \"postgres\" is currently supported") +var ( + err_unsupported_database_type = errors.New("Unsupported database type; only \"postgres\" is currently supported") + err_connection_handler_eof = errors.New("Connection handler encountered EOF") +) type err_local_recipients_not_found_t []string |