This commit is contained in:
Stéphane Depierrepont aka Toorop
2015-05-02 20:13:00 +02:00
parent d3f8e980a0
commit a975eb7186
3 changed files with 58 additions and 0 deletions

12
errors.go Normal file
View File

@@ -0,0 +1,12 @@
package dkim
import (
"errors"
)
var (
// ErrConfigNoPrivateKey when there not private key in config
ErrConfigNoPrivateKey = errors.New("private key not defined in config")
// ErrConfigNoDomain when there is no domain defined in config
ErrConfigNoDomain = errors.New("domain not defined in config")
)