aboutsummaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2019-08-30 02:53:06 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2019-08-30 02:53:06 +0300
commitdd42100aa2f062a4e53399a3cabce732eaf0f6e5 (patch)
tree5913585fe0878b3cb4b4fe852f3b3345cfca4f94 /errors.go
parent878cb24695b7d39fa9de65a1e164abc84dc67ead (diff)
Barcode and ISINHEADmaster
Diffstat (limited to 'errors.go')
-rw-r--r--errors.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/errors.go b/errors.go
index fd57ccc..21973fa 100644
--- a/errors.go
+++ b/errors.go
@@ -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
)