diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2019-08-30 02:53:06 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2019-08-30 02:53:06 +0300 |
commit | dd42100aa2f062a4e53399a3cabce732eaf0f6e5 (patch) | |
tree | 5913585fe0878b3cb4b4fe852f3b3345cfca4f94 /errors.go | |
parent | 878cb24695b7d39fa9de65a1e164abc84dc67ead (diff) |
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 ) |