diff options
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,4 +5,5 @@ import "errors" var ( ErrInvalidNumber = errors.New("invalid number") // number contains non numeric symbols ErrInvalidChecksum = errors.New("invalid checksum") // number not correct by luhn algorithm + ErrNotImplemented = errors.New("not implemented") // not implemented currently ) |